* [gentoo-user] anyone using postfix 3.0.0
@ 2015-03-26 1:24 gottlieb
2015-03-26 1:37 ` Wolfgang Mueller
0 siblings, 1 reply; 5+ messages in thread
From: gottlieb @ 2015-03-26 1:24 UTC (permalink / raw
To: gentoo-user
A new stable mail-mta/postfix hit the tree recently 3.0.0.
Is anyone running it? I built it on a test machine but it doesn't seem
to work. However, I don't use that machine much (and never for mail) so
it is very possibly mis-configured for mail. Before I build the new
postscript for my real machine I would like to hear that those
postscript users on this list are not having problems.
thanks,
allan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] anyone using postfix 3.0.0
2015-03-26 1:24 [gentoo-user] anyone using postfix 3.0.0 gottlieb
@ 2015-03-26 1:37 ` Wolfgang Mueller
2015-03-26 2:34 ` gottlieb
0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Mueller @ 2015-03-26 1:37 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 789 bytes --]
> Is anyone running it? I built it on a test machine but it doesn't seem
> to work. However, I don't use that machine much (and never for mail)
> so it is very possibly mis-configured for mail. Before I build the
> new postscript for my real machine I would like to hear that those
> postscript users on this list are not having problems.
I updated to postfix 3.0 three hours ago on my production server - no
problems whatsoever. No changes to main.cf or any other configuration
file are needed (you may want to add `compatibility_level = x' as per:
http://www.postfix.org/COMPATIBILITY_README.html, though).
For changes, see
http://www.postfix.org/announcements/postfix-3.0.0.html
--
Wolfgang Mueller / vehk.de / 0xc543cfce9465f573
Ed is the standard text editor.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] anyone using postfix 3.0.0
2015-03-26 1:37 ` Wolfgang Mueller
@ 2015-03-26 2:34 ` gottlieb
2015-03-26 3:18 ` Wolfgang Mueller
0 siblings, 1 reply; 5+ messages in thread
From: gottlieb @ 2015-03-26 2:34 UTC (permalink / raw
To: gentoo-user
On Wed, Mar 25 2015, Wolfgang Mueller wrote:
>> Is anyone running it? I built it on a test machine but it doesn't seem
>> to work. However, I don't use that machine much (and never for mail)
>> so it is very possibly mis-configured for mail. Before I build the
>> new postscript for my real machine I would like to hear that those
>> postscript users on this list are not having problems.
>
> I updated to postfix 3.0 three hours ago on my production server - no
> problems whatsoever. No changes to main.cf or any other configuration
> file are needed (you may want to add `compatibility_level = x' as per:
> http://www.postfix.org/COMPATIBILITY_README.html, though).
>
> For changes, see
> http://www.postfix.org/announcements/postfix-3.0.0.html
I think I see.
After I upgrade and do nothing I will be running in backwards
compatibility "mode".
Then I run for a while, check the logs and issue the appropriate
postconf commands.
Not so clear is when do you turn off backwards compatibility (i.e. set
the level). Does postfix determine the level right away or should I let
it run for a few weeks so it sees a lot of mail?
thanks,
allan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] anyone using postfix 3.0.0
2015-03-26 2:34 ` gottlieb
@ 2015-03-26 3:18 ` Wolfgang Mueller
2015-03-26 12:53 ` gottlieb
0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Mueller @ 2015-03-26 3:18 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1410 bytes --]
On Wed, Mar 25, 2015 at 22:34:10 -0400, gottlieb@nyu.edu wrote:
> Then I run for a while, check the logs and issue the appropriate
> postconf commands.
Yes, exactly.
You can also manually go through the settings mentioned in the
"Overview" section of COMPATIBILITY_README, to see if anything needs
changing in main.cf/master.cf. That's what I did.
> Not so clear is when do you turn off backwards compatibility (i.e. set
> the level). Does postfix determine the level right away or should I let
> it run for a few weeks so it sees a lot of mail?
The documentation is not clear on this, but I don't think there's any
kind of logic behind the compatibility level postfix mentions in its
log - it's just the hard-coded version specifier, the "most recent"
compatibility level.
You can turn off the safety net once you made sure that postfix is
configured the way you want; that is, once you made sure that no more
backwards-compatible default settings would need to be made permanent.
For example, relay_domains used to default to $mydestination. With
postfix 3.0.0, it defaults to:
relay_domains = ${{$compatibility_level} < {2} ? {$mydestination} : {}}
If you rely on the default setting of relay_domains (i.e. you don't set
it explicitly in main.cf) you may need to change it now.
--
Wolfgang Mueller / vehk.de / 0xc543cfce9465f573
Ed is the standard text editor.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] anyone using postfix 3.0.0
2015-03-26 3:18 ` Wolfgang Mueller
@ 2015-03-26 12:53 ` gottlieb
0 siblings, 0 replies; 5+ messages in thread
From: gottlieb @ 2015-03-26 12:53 UTC (permalink / raw
To: gentoo-user
On Wed, Mar 25 2015, Wolfgang Mueller wrote:
> On Wed, Mar 25, 2015 at 22:34:10 -0400, gottlieb@nyu.edu wrote:
>> Then I run for a while, check the logs and issue the appropriate
>> postconf commands.
>
> Yes, exactly.
>
> You can also manually go through the settings mentioned in the
> "Overview" section of COMPATIBILITY_README, to see if anything needs
> changing in main.cf/master.cf. That's what I did.
>
>> Not so clear is when do you turn off backwards compatibility (i.e. set
>> the level). Does postfix determine the level right away or should I let
>> it run for a few weeks so it sees a lot of mail?
>
> The documentation is not clear on this, but I don't think there's any
> kind of logic behind the compatibility level postfix mentions in its
> log - it's just the hard-coded version specifier, the "most recent"
> compatibility level.
>
> You can turn off the safety net once you made sure that postfix is
> configured the way you want; that is, once you made sure that no more
> backwards-compatible default settings would need to be made permanent.
>
> For example, relay_domains used to default to $mydestination. With
> postfix 3.0.0, it defaults to:
> relay_domains = ${{$compatibility_level} < {2} ? {$mydestination} : {}}
>
> If you rely on the default setting of relay_domains (i.e. you don't set
> it explicitly in main.cf) you may need to change it now.
Thanks.
It now looks as though my test machine does work; I forgot to restart
postfix. So today when I booted it up it does seem to process mail.
Thanks again,
allan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-03-26 12:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-26 1:24 [gentoo-user] anyone using postfix 3.0.0 gottlieb
2015-03-26 1:37 ` Wolfgang Mueller
2015-03-26 2:34 ` gottlieb
2015-03-26 3:18 ` Wolfgang Mueller
2015-03-26 12:53 ` gottlieb
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox