Re: Understanding postfix log

2013-05-15 Thread Martin Schütte
> What does "conn_use", "delays=a/b/c/d" and "dsn"means http://www.postfix.org/CONNECTION_CACHE_README.html#safety http://www.postfix.org/postconf.5.html#delay_logging_resolution_limit http://www.postfix.org/DSN_README.html -- Martin

Re: grep maillog by date

2013-05-07 Thread Martin Schütte
On 05/07/2013 04:03 PM, Reindl Harald wrote: > exactly the format like below from /var/log/maillog and yesterday? With GNU date: fgrep -e "`date -d yesterday +'%b %e'`" /var/log/mail.log | fgrep NOQUEUE -- Martin

Re: Name resolution

2012-05-22 Thread Martin Schütte
On 05/22/12 12:15, Barbara M. wrote: > Any trick/config/workaround to force Postfix to consider /etc/hosts? To use other data sources than DNS you need the smtp_host_lookup option (http://www.postfix.org/postconf.5.html#smtp_host_lookup). -- Martin

Re: good data backup system for a mail server?

2011-11-16 Thread Martin Schütte
On 11/16/11 18:17, Daniel Bromberg wrote: > I was wondering what data backup systems people use? I found that filesystem snapshots are the easiest solution. Depending on disk space I keep several snapshots around and at night one is used for an incremental backup with dump(8). -- Martin

Re: Anyone run Postfix in FreeBSD jails environement ?

2011-06-08 Thread Martin Schütte
On 06/08/11 06:09, Frank Bonnet wrote: > Does anyone is running postfix in FreeBSD "jails" environement > with success on a production server ? I'm thinking of it > and would be interrested by any successful experience. Yes. (Using it for about 8 years now, cannot remember any jails related probl

Re: Simple SASL for postfix as a client

2011-05-04 Thread Martin Schütte
On 05/04/11 11:13, Jack Raats wrote: > Is there a simple programm I can use thogether with postfix and > dovecot, which allows postfix to authenticate as a client to anothe > SMTP server. You probably do not need another program. Make sure Postfix is compiled with SASL and use http://www.postfix.o

Re: pflogsumm and logfiles without machine name

2011-02-21 Thread Martin Schütte
On 02/21/11 15:37, Reindl Harald wrote: > Is there a way to get "pflogsumm" work with logfiles without > a machine name because the hostname is useless overhead > as long it is the same in every line You could just reinsert the hostname with sed: sed -e 's/ postfix\// localhost postfix\//' /var/lo

Re: How to reject bad hosts

2010-08-09 Thread Martin Schütte
On 08/09/10 16:29, Nicolas Michel wrote: I want to know if there is a way to reject connections from host not listed in the MX records of the domain it claims to be. Try http://www.policyd-weight.org/ It checks and compares the client IP, its HELO, the from address. Among other attributes it a

Re: alternatative to Mailman

2010-03-19 Thread Martin Schütte
Mauro Faccenda wrote: > Does anyone can recommend any good alternative to Mailman as a Mailing > Lists Manager that plugs well with Postfix? I heard some praise for http://www.sympa.org/ But I never used it myself. -- Martin

Re: Alternative to syslog?

2009-08-05 Thread Martin Schütte
Srdan Dukic wrote: > Ideally I would like Postfix to output its logs to a named unix fifo > pipe that would be read by my daemon process. In the configuration > documentation I can't find any way of specifying an alternative to > syslog. Is there any way to do this? Syslog is the right tool becaus