Re: QUEUE/TRANSACTION ID REUSE

2009-06-28 Thread Magnus Bäck
On Sunday, June 28, 2009 at 01:03 CEST, Noel Jones wrote: [...] > The important point is that postfix guarantees a QUEUEID will be > unique within the current queue. As soon as that file is released, > that same id can be reused any time. Nitpick: I believe "any time" means "at the very e

Re: smtpd_recipient_limit for one group of users

2009-06-28 Thread Magnus Bäck
On Monday, June 29, 2009 at 06:11 CEST, R Pradeepa wrote: > Can we have restriction on "smtpd_recipient_limit" parameter for one > group of users whereas for others we dont need this limitation. There is no Postfix builtin for this, but a custom policy server would be capable of enforcing s

smtpd_recipient_limit for one group of users

2009-06-28 Thread R Pradeepa
Dear All, Can we have restriction on "smtpd_recipient_limit" parameter for one group of users whereas for others we dont need this limitation. Regards Pradeepa

Re: dk dkim with dkimproxy

2009-06-28 Thread fake...@fakessh.eu
I put selector , mail . it was not until the spread of dns Le lundi 29 juin 2009 05:12, Byung-Hee HWANG a écrit : > "fake...@fakessh.eu" writes: > > that right now > > [swilt...@your-ab6cd29f8e ~]$ host -t txt > > fakessh.eu._domainkey.fakessh.eu. fakessh.eu._domainkey.fakessh.eu > > descriptiv

Re: dk dkim with dkimproxy

2009-06-28 Thread Byung-Hee HWANG
"fake...@fakessh.eu" writes: > that right now > [swilt...@your-ab6cd29f8e ~]$ host -t txt fakessh.eu._domainkey.fakessh.eu. > fakessh.eu._domainkey.fakessh.eu descriptive text "v=DKIM1\; > t=s\;k=rsa\;p=MIG[...] OK, your check seems good. Then you check try again with external public DNS (eg,

Re: dk dkim with dkimproxy

2009-06-28 Thread fake...@fakessh.eu
that right now [swilt...@your-ab6cd29f8e ~]$ nslookup -type=TXT fakessh.eu._domainkey.fakessh.eu. Server: 192.168.1.1 Address:192.168.1.1#53 Non-authoritative answer: fakessh.eu._domainkey.fakessh.eutext = "v=DKIM1\; t=s\;k=rsa\;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC29

Re: dk dkim with dkimproxy

2009-06-28 Thread fake...@fakessh.eu
that right now [swilt...@your-ab6cd29f8e ~]$ host -t txt fakessh.eu._domainkey.fakessh.eu. fakessh.eu._domainkey.fakessh.eu descriptive text "v=DKIM1\; t=s\;k=rsa\;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC29FIrlsKuQCL8gsJb7gBTG3NlPaDeycOVbix/TBSfrY300mjguwkDy3lJ88VR6VTGtTrtG4JND6YgA7ncvRbgDWfN5ke

Re: dk dkim with dkimproxy

2009-06-28 Thread Byung-Hee HWANG
"fake...@fakessh.eu" writes: > I have a strange error that I do not understand > I have the impression of having set dkimproxy well > my config [...] > fakessh.eu > dkim(c=simple,s=fakessh.eu,a=rsa-sha1,key=/usr/local/dkimproxy/keys/fakessh.eu.key) > domainkeys(c=nofws,s=fakessh.eu,key=/usr/loca

Re: Daily outbound message counts?

2009-06-28 Thread Ville Walveranta
On Sun, Jun 28, 2009 at 4:09 PM, Brian Mathis wrote: > Look into log analysis tools like pflogsumm. Exactly what I was looking for. Thank you! Ville

Re: Daily outbound message counts?

2009-06-28 Thread Brian Mathis
Look into log analysis tools like pflogsumm. On Sun, Jun 28, 2009 at 4:27 PM, Ville Walveranta wrote: > I would like to have a daily report of the total number of email > messages sent out through a Postfix installation (all users, all > domains combined). What would be the easiest way to "increm

Daily outbound message counts?

2009-06-28 Thread Ville Walveranta
I would like to have a daily report of the total number of email messages sent out through a Postfix installation (all users, all domains combined). What would be the easiest way to "increment a counter" every time a mail goes out? I would mostly use the daily count as an alarm of possible abuse,

Re: abort when client disconnects

2009-06-28 Thread Noel Jones
mouss wrote: Kouhei Sutou a écrit : Hi, I want smtpd to abort a connection for a SMTP client as soon as possible when the client disconnects the connection before smtpd returns a response. If you mean the ability to reject a connection before RCPT TO, then you can change smtpd_delay_reject.

Re: Whitelisting by recipient domain name

2009-06-28 Thread Steve
On Sun, 2009-06-28 at 14:38 -0500, Noel Jones wrote: > Steve wrote: > > Hi, > > > > I've been looking at some archive posts regarding white listing by > > intended recipient domain. > > > > Say for example I wish to white list any incoming mail for: > > b...@example.com - is this actually possibl

Re: Whitelisting by recipient domain name

2009-06-28 Thread Noel Jones
Steve wrote: Hi, I've been looking at some archive posts regarding white listing by intended recipient domain. Say for example I wish to white list any incoming mail for: b...@example.com - is this actually possible? Yes, this is one reason some people like to put all their restrictions unde

Re: dk dkim with dkimproxy

2009-06-28 Thread Noel Jones
fake...@fakessh.eu wrote: I have a strange error that I do not understand I have the impression of having set dkimproxy well Apparently dkimproxy isn't using the selector you want. This doesn't look like a postfix problem, you'll need to ask on a dkimproxy support forum. -- Noel Jones

dk dkim with dkimproxy

2009-06-28 Thread fake...@fakessh.eu
I have a strange error that I do not understand I have the impression of having set dkimproxy well my config # specify what address/port DKIMproxy should listen on listen127.0.0.1:10028 # specify what address/port DKIMproxy forwards mail to relay 127.0.0.1:10029 # specify what domains D

Re: abort when client disconnects

2009-06-28 Thread Victor Duchovni
On Sun, Jun 28, 2009 at 12:12:00PM +0200, mouss wrote: > > I want smtpd to abort a connection for a SMTP client as soon > > as possible when the client disconnects the connection > > before smtpd returns a response. > > > > If you mean the ability to reject a connection before RCPT TO, then you

Whitelisting by recipient domain name

2009-06-28 Thread Steve
Hi, I've been looking at some archive posts regarding white listing by intended recipient domain. Say for example I wish to white list any incoming mail for: b...@example.com - is this actually possible? Thinking about the stages of the SMTP conversation this is not going to be available until t

Re: virtual table user bounced

2009-06-28 Thread fake...@fakessh.eu
its work fine thanks peace for all Le dimanche 28 juin 2009 10:36, Sahil Tandon a écrit : > On Sun, 28 Jun 2009, fake...@fakessh.eu wrote: > > I have a weird problem > > > > I issued my logs > > > > [r...@r13151 ~]# tail -f /var/log/maillog > > Jun 28 07:17:08 r13151 postfix/lmtp[19757]: EC99F2

Re: abort when client disconnects

2009-06-28 Thread mouss
Kouhei Sutou a écrit : > Hi, > > I want smtpd to abort a connection for a SMTP client as soon > as possible when the client disconnects the connection > before smtpd returns a response. > If you mean the ability to reject a connection before RCPT TO, then you can change smtpd_delay_reject. but i

Re: Send to relay?

2009-06-28 Thread Ville Walveranta
Note to other setting this up for the first time: make sure you have the Cyrus SASL2 library compiled in! It took me a while to figure out why SASL AUTH wasn't working. Ville

Re: virtual table user bounced

2009-06-28 Thread Sahil Tandon
On Sun, 28 Jun 2009, fake...@fakessh.eu wrote: > I have a weird problem > > I issued my logs > > [r...@r13151 ~]# tail -f /var/log/maillog > Jun 28 07:17:08 r13151 postfix/lmtp[19757]: EC99F24681: > to=, relay=127.0.0.1[127.0.0.1]:10024, > delay=4.2, delays=1.2/0.01/0.01/3, dsn=2.6.0, status=