Displaying 9 results from an estimated 9 matches for "null_sender".
2007 Jul 11
0
postfix pipe to deliver, null_sender.
....g. fetchmail, and it cannot be delivered, then the bounce
will be bounced, to MAILER-DAEMON ..
My master.cf entry looks like this:
dovecot unix - n n - - pipe
flags=DRhu user=atmail:atmail argv=/usr/local/dovecot/libexec/dovecot/deliver -d ${recipient}
If I add null_sender= , then that resolves it:
dovecot unix - n n - - pipe
flags=DRhu user=atmail:atmail null_sender= argv=/usr/local/dovecot/libexec/dovecot/deliver -d ${recipient}
What do other postfix/dovecot-users do? Will this change break
anything? I cannot see why empty null_...
2007 Nov 23
7
Modules design patterns ?
...{
$mynetwork = ''127.0.0.1/8''
$smarthost = ''mail.domain.com''
... other variables...
include postfix
...
}
But I find myself writing all my modules manifests almost always like
that:
class postfix {
... define package, common files...
define null_sender($mynetwork = ''127.0.0.1'', $smarthost,... ) {
file {
"/etc/postfix/main.cf":
content => template("postfix/main.cf.erb")
}
}
...
define mx(...) {
...
}
}
and using it like this:
site manifest:
node "server.domain.com" {...
2015 Apr 14
2
Dovecot and recipient_delimiter
...and i'd like to use the
recipient_delimiter feature to get my spam/junk mails directly to this
folder.
what i have done yet:
dovecot.conf:
plugin {
recipient_delimiter = +
}
postfix: master.cf
dovecot unix - n n - - pipe
flags=DRhu user=vmail:vmail null_sender=
argv=/usr/libexec/dovecot/deliver -f ${sender} -d ${user}@${nexthop} -e
-m ${extension}
postfix: main.cf
recipient_delimiter = +
what i get:
Apr 14 13:46:50 mule postfix/pickup[22664]: 71ED53C05EE: uid=0
from=<testuser at testdomain.test>
Apr 14 13:46:50 mule postfix/cleanup[1408]: 7...
2015 Apr 14
0
Dovecot and recipient_delimiter
...my spam/junk mails directly to this
> folder.
>
> what i have done yet:
>
> dovecot.conf:
>
> plugin {
> recipient_delimiter = +
> }
>
> postfix: master.cf
>
> dovecot unix - n n - - pipe
> flags=DRhu user=vmail:vmail null_sender=
> argv=/usr/libexec/dovecot/deliver -f ${sender} -d ${user}@${nexthop}
> -e -m ${extension}
>
> postfix: main.cf
>
> recipient_delimiter = +
>
>
> what i get:
>
> Apr 14 13:46:50 mule postfix/pickup[22664]: 71ED53C05EE: uid=0
> from=<testuser at testdomain...
2014 Oct 24
2
dovecot-lda from postfix on remote dovecot server
...do some custom
stuff... then when i've decided the final destination i'd like to call
/usr/lib/dovecot/dovecot-lda to deliver the mail.
Actually i have in master.cf:
#####################?
dovecot unix - n n - - pipe
flags=DRhu user=vmail:vmail null_sender=
argv=/usr/lib/dovecot/dovecot-lda -f ${sender} -d ${recipient}
#####################?
I'd like to know if is possible to use some other command or some
additional parameter to deliver the mail to a remote dovecot server.
Thanks
--
/*************/
nik600
http://www.kumbe.it
2015 Apr 14
2
Dovecot and recipient_delimiter
...gt;>
>> what i have done yet:
>>
>> dovecot.conf:
>>
>> plugin {
>> recipient_delimiter = +
>> }
>>
>> postfix: master.cf
>>
>> dovecot unix - n n - - pipe
>> flags=DRhu user=vmail:vmail null_sender=
>> argv=/usr/libexec/dovecot/deliver -f ${sender} -d ${user}@${nexthop}
>> -e -m ${extension}
>>
>> postfix: main.cf
>>
>> recipient_delimiter = +
>>
>>
>> what i get:
>>
>> Apr 14 13:46:50 mule postfix/pickup[22664]: 71ED53C05EE: u...
2011 Aug 05
1
DoveCot LDA prefetch fails with LDA, works with POP client
...ceive emails through DoveCot, thus proving
my password prefetch and user authentication are good.
The problem is when I use Postfix to deliver message to DoveCot via LDA.
My postfix master.cf looks like this:
dovecot unix - n n - - pipe
flags=Rhu user=hubdirect null_sender=
argv=/usr/libexec/dovecot/deliver -e -f ${sender} -d ${user}
Given a message, Postfix looks up LDAP and find the user associated with
the recipient address and delivers the message using LDA. LDAP logs
indicates that Postfix is returning the right user.
The problem is that DoveCot complains &q...
2013 Dec 24
0
Patch for Dovecot's quota policy daemon
...QUOTA_MATCH_SENDER
Stringmatch sender=
${sender}
This macro expands to the envelope sender
address. By default, the null sender address
expands to MAILER-DAEMON; this can be
changed with the null_sender attribute, as
described above.
This information is modified by the q flag
for quoting.
--
Heinlein Support GmbH
Schwedter Str. 8/9b, 10119 Berlin
http://www.heinlein-support.de
Tel: 030 / 405051-42
Fax: 030 / 405051-19
Zwa...
2019 Oct 30
2
encrypt incoming emails with public gpg key before they are stored to maildir
Hello,
I have asked on the postfix mailing list for a solution, how to encrypt
incoming emails with public gpg key
My original idea was to use a smtpd-milter, which would encrypt all
incoming plaintext messages of given user, using the users public gpg
key. This way, it would look as if the original sender has sent the
message encrypted.
Somebody suggested this might be better done in Dovecot,