Sebastian Tennant
2008-Apr-29 09:16 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
Hi list, I''ve set up a virtual domain alias router which uses files in a directory whose names correspond to domains, like so: /etc/exim4/virtual/<domain> One such file includes this line: test : seb at smolny.plus.com, sdt at smolny.plus.com, sebyte at smolny.plus.com When an email is received for delivery to test@<domain>, /var/log/exim4/mainlog reads: ... => seb at smolny.plus.com ... ... -> sdt at smolny.plus.com ... ... -> sebyte at smolny.plus.com ... The manual (info "(exim4)Log line flags") says that lines which include ''->'' are ''additional addresses in the same delivery'' but the email is only received at the first address listed (seb at smolny.plus.com) so what does ''additional addresses in the same delivery'' actually mean? How can I ensure mail is delivered to all three addresses? Any help/tips/suggestions much appreciated. Sebastian
Marc Haber
2008-May-22 19:57 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
On Tue, Apr 29, 2008 at 09:16:40AM +0000, Sebastian Tennant wrote:> I''ve set up a virtual domain alias router which uses files in a > directory whose names correspond to domains, like so: > > /etc/exim4/virtual/<domain> > > One such file includes this line: > > test : seb at smolny.plus.com, sdt at smolny.plus.com, sebyte at smolny.plus.com > > When an email is received for delivery to test@<domain>, > /var/log/exim4/mainlog reads: > > ... => seb at smolny.plus.com ... > ... -> sdt at smolny.plus.com ... > ... -> sebyte at smolny.plus.com ... > > The manual (info "(exim4)Log line flags") says that lines which > include ''->'' are ''additional addresses in the same delivery'' but the > email is only received at the first address listed > (seb at smolny.plus.com) so what does ''additional addresses in the same > delivery'' actually mean?That means that the message was delivered as a single message with three RCPT addresses in the envelope, which is clear because all three destinations are in the same domain.> How can I ensure mail is delivered to all three addresses?Educate the MX of smolny.plus.com to do a seperate delivery for each Recipient as it is expected. Greetings Marc -- ----------------------------------------------------------------------------- Marc Haber | "I don''t trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190 Bitte beachten Sie, da? dem [m.E. grundgesetzwidrigen] Gesetz zur Vorratsdatenspeicherung zufolge, seit dem 1. Januar 2008 jeglicher elektronische Kontakt (E-Mail, Telefongespr?che, SMS, Internet- Telefonie, Mobilfunk, Fax) mit mir oder anderen Nutzern verdachts- unabh?ngig f?r den automatisierten geheimen Zugriff durch Strafver- folgungs- u. Polizeivollzugsbeh?rden, die Bundesanstalt f?r Finanz- dienstleistungsaufsicht, Zollkriminal- und Zollfahndungs?mter,die Zollverwaltung zur Schwarzarbeitsbek?mpfung, Notrufabfragestellen, Verfassungsschutzbeh?rden, den Milit?rischen Abschirmdienst, Bundes- nachrichtendienst sowie 52 Staaten wie beispielsweise Aserbeidschan oder die USA sechs Monate lang gespeichert wird, einschlie?lich der Kommunikation mit Berufsgeheimnistr?gern wie ?rzten, Journalisten und Anw?lten. Mehr Infos zur totalen Protokollierung Ihrer Kommunikations- daten auf www.vorratsdatenspeicherung.de. (leicht ver?ndert ?bernommen kopiert von www.lawblog.de)
Sebastian Tennant
2008-May-23 07:21 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
Quoth Marc Haber <mh+pkg-exim4-users at zugschlus.de>:>> The manual (info "(exim4)Log line flags") says that lines which >> include ''->'' are ''additional addresses in the same delivery'' but the >> email is only received at the first address listed >> (seb at smolny.plus.com) so what does ''additional addresses in the same >> delivery'' actually mean? > > That means that the message was delivered as a single message with > three RCPT addresses in the envelope, which is clear because all three > destinations are in the same domain.Hmm... interesting. Can I assume Exim will always slap three addresses on the same envelope if the recipents all belong to the same domain?>> How can I ensure mail is delivered to all three addresses? > > Educate the MX of smolny.plus.com to do a seperate delivery for each > Recipient as it is expected.Hmm... very interesting. So PlusNet''s email servers are at fault. They''re a pretty big ISP in the UK. I doubt they''ll change things just for me. Have you ever encountered mail servers that only do local deliveries to the first address on the evelope before? Sebastian -- Emacs'' AlsaPlayer - Music Without Jolts http://sebyte.org/eap.html
Marc Haber
2008-May-23 08:40 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
On Fri, May 23, 2008 at 10:21:55AM +0300, Sebastian Tennant wrote:> Quoth Marc Haber <mh+pkg-exim4-users at zugschlus.de>: > >> The manual (info "(exim4)Log line flags") says that lines which > >> include ''->'' are ''additional addresses in the same delivery'' but the > >> email is only received at the first address listed > >> (seb at smolny.plus.com) so what does ''additional addresses in the same > >> delivery'' actually mean? > > > > That means that the message was delivered as a single message with > > three RCPT addresses in the envelope, which is clear because all three > > destinations are in the same domain. > > Hmm... interesting. Can I assume Exim will always slap three addresses > on the same envelope if the recipents all belong to the same domain?That''s exim''s normal mode of operation. It can be massaged to do things different.> >> How can I ensure mail is delivered to all three addresses? > > > > Educate the MX of smolny.plus.com to do a seperate delivery for each > > Recipient as it is expected. > > Hmm... very interesting. So PlusNet''s email servers are at fault. > They''re a pretty big ISP in the UK. I doubt they''ll change things just > for me. > > Have you ever encountered mail servers that only do local deliveries to > the first address on the evelope before?That can happen, for example, if POP3-Multidrop is in the game. Some MTAs deliver a message only once if both deliveries would end up in the same mail store. Greetings Marc -- ----------------------------------------------------------------------------- Marc Haber | "I don''t trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things." Winona Ryder | Fon: *49 621 72739834 Nordisch by Nature | How to make an American Quilt | Fax: *49 3221 2323190
Sebastian Tennant
2008-May-23 12:04 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
> Quoth Marc Haber <mh+pkg-exim4-users at zugschlus.de>: >> Can I assume Exim will always slap [multiple] addresses on the same >> envelope if the recipents all belong to the same domain?> That''s exim''s normal mode of operation. It can be massaged to do things > different.Noted.>> Have you ever encountered mail servers that only do local deliveries to >> the first address on the evelope before?> That can happen, for example, if POP3-Multidrop is in the game. Some > MTAs deliver a message only once if both deliveries would end up in > the same mail store.Many thanks for the clarification. Sebastian. -- Emacs'' AlsaPlayer - Music Without Jolts http://sebyte.org/eap.html
Ross Boylan
2008-May-23 19:15 UTC
[Pkg-exim4-users] Aliases and ''additional addresses in same delivery''
On Fri, 2008-05-23 at 10:21 +0300, Sebastian Tennant wrote:> > Educate the MX of smolny.plus.com to do a seperate delivery for each > > Recipient as it is expected. > > Hmm... very interesting. So PlusNet''s email servers are at fault. > They''re a pretty big ISP in the UK. I doubt they''ll change things > just > for me. >Well, you''d be doing a public service if you brought this to their attention. I doubt you''re the only one affected, even if you''re the only one that noticed. Ross