Re: Problems with SPF policy service (pypolicyd-spf)

2016-06-16 Thread eNeKuX
Hello, I just wanted to provide a feedback with the resolution to our problem. Your hint Wietse was the key ;) "Simplify the configuration: place check_policy_service at the start of your rules." The problem was in the location of the "check_policy_service unix:private/policyd-spf" in our Post

Re: Cannot connect to postfix

2016-06-16 Thread Wietse Venema
Bob Lydiate: > I installed postfix server on Ubuntu 16.04 using a youtube video from > 'randomthoughts'. All of the testing and everything worked just fine, still > does. When I try to use Outlook to connect to my email account on my > server, I get nothing. Outlook says it was rejected, the logs o

Re: Cannot connect to postfix

2016-06-16 Thread Boris Behrens
Sure this is a problem with postfix? Maybe there is no dovecot or so installed. For me it looks like thunderbird uses the maildir, because it is installed on the server. Just my 5 cent. Boris > Am 16.06.2016 um 12:19 schrieb Wietse Venema : > > Bob Lydiate: >> I installed postfix server on Ub

Re: tracking progress of messages

2016-06-16 Thread Rob Maidment
Hi Wietse > I supposed you're referring to the '-X' command-line option that > logs all traffic (to file of FIFO). This appears to be a debugging > tool that logs voluminous amounts of data including network > conversations. > Why are you not concerned about changes in Sendmail debug logging? No

Re: sender_dependent_default_transport_maps ignored by smtpd

2016-06-16 Thread Russell Yanofsky
Could anyone confirm whether this seems like a real bug before I spend time trying to work around or fix it? To summarize, my configuration is: default_transport = error:External delivery disabled sender_dependent_default_transport_maps = inline:{ @yanofsky.org=smtp:[smtp-relay.gmail.com]:587

Re: sender_dependent_default_transport_maps ignored by smtpd

2016-06-16 Thread Russell Yanofsky
The attached patch fixes the problem for me. It changes the relevant smtpd_resolve_addr() call in smtpd_check.c to use the message sender. diff --git a/src/smtpd/smtpd_check.c b/src/smtpd/smtpd_check.c index 74e42d7..2d8c6b7 100644 --- a/src/smtpd/smtpd_check.c +++ b/src/smtpd/smtpd_check.c @@ -510

Re: sender_dependent_default_transport_maps ignored by smtpd

2016-06-16 Thread Wietse Venema
Russell Yanofsky: > The attached patch fixes the problem for me. It changes the relevant > smtpd_resolve_addr() call in smtpd_check.c to use the message sender. One complication is that the smtpd_resolve_addr cache is not only used for validating recipients, but also for validating senders. See ch