Hi guys!
I am new on this forum, but I have been reading some threads once in a while and looks like a good place to get some advice and tips for Email Marketing.
I am currently setting up my PowerMTA config for my mail server. But I am a bit unsure about the domain macro, <mx-rollup-list> and queue function regarding Hotmail/Outlook/Live/Msn domain.
Most Email Marketers know that Hotmail/Outlook/Live/Msn is the same and owned by Microsoft.
The User guide for PowerMTA guides after that (Being the same blabla), with setting up the configuration to "domain macro", "mx-roll-up" or "queue" them together based on the MX Records for those domains.
But when looking up the specific MX records for the domains it looks like this:
It's of course just like mt1.server.com, mt2.server.com, mt3.server.com and so on - But when looking them up it is only ONE MX record pr domain. Not 2 or 3.
So after looking up these MX records, I began to doubt that it would be correct to put all hotmail, Outlook, MSN and Live TLDs together in one queue. Based on they got different MX records.
My current config before launch testing is(Some of it):
So my question is if anyone has experience with this? The deliverability, bounce messages and if they should be split up per MX record?
Mainly because if their servers get too many requests they will reject them. So for example:
If it was set up like:
So it is queued/mx-roll-up'ed pr MX Record instead of just queued after Hotmail.com's MX Record.
But I am not sure if Hotmail will reject connections with that config. Like if it takes the max-msg-rate and max-msg-per-connection and counts them as one in Hotmail's end. So it gets too many Emails from my Mail server and messes it up.
I hope anyone has some experience within this and I apologize for the looooong thread but If you manage to read it all and could give some advice... I would highly appreciate it!
I am new on this forum, but I have been reading some threads once in a while and looks like a good place to get some advice and tips for Email Marketing.
I am currently setting up my PowerMTA config for my mail server. But I am a bit unsure about the domain macro, <mx-rollup-list> and queue function regarding Hotmail/Outlook/Live/Msn domain.
Most Email Marketers know that Hotmail/Outlook/Live/Msn is the same and owned by Microsoft.
The User guide for PowerMTA guides after that (Being the same blabla), with setting up the configuration to "domain macro", "mx-roll-up" or "queue" them together based on the MX Records for those domains.
But when looking up the specific MX records for the domains it looks like this:
- outlook-com.olc.protection.outlook.com - Outlook.com
- hotmail-com.olc.protection.outlook.com - Hotmail.com
- eur.olc.protection.outlook.com - hotmail.nl
- live-com.olc.protection.outlook.com - Live.com
- eur.olc.protection.outlook.com - Live.nl
- msn-com.olc.protection.outlook.com - Msn.com
It's of course just like mt1.server.com, mt2.server.com, mt3.server.com and so on - But when looking them up it is only ONE MX record pr domain. Not 2 or 3.
So after looking up these MX records, I began to doubt that it would be correct to put all hotmail, Outlook, MSN and Live TLDs together in one queue. Based on they got different MX records.
My current config before launch testing is(Some of it):
Code:
<domain hotmail.$HotmailTopLevel>
queue-to hotmail.queue
</domain>
<domain live.$LiveTopLevel>
queue-to hotmail.queue
</domain>
<domain outlook.$OutlookTopLevel>
queue-to hotmail.queue
</domain>
<domain msn.com>
queue-to hotmail.queue
</domain>
<domain hotmail.queue>
smtp-hosts lookup-mx:hotmail.com
max-smtp-out X
max-msg-rate X/x
max-msg-per-connection X
</domain>
So my question is if anyone has experience with this? The deliverability, bounce messages and if they should be split up per MX record?
Mainly because if their servers get too many requests they will reject them. So for example:
If it was set up like:
Code:
<domain hotmail.$HotmailTopLevel>
queue-to hotmail.queue
</domain>
<domain live.$LiveTopLevel>
queue-to live.queue
</domain>
<domain outlook.$OutlookTopLevel>
queue-to outlook.queue
</domain>
<domain msn.com>
queue-to msn.queue
</domain>
<domain (hotmail/msn/outlook/live).queue>
smtp-hosts lookup-mx:(hotmail.com/msn.com/outlook.com/live.com)
max-smtp-out X
max-msg-rate X/x
max-msg-per-connection X
</domain>
So it is queued/mx-roll-up'ed pr MX Record instead of just queued after Hotmail.com's MX Record.
But I am not sure if Hotmail will reject connections with that config. Like if it takes the max-msg-rate and max-msg-per-connection and counts them as one in Hotmail's end. So it gets too many Emails from my Mail server and messes it up.
I hope anyone has some experience within this and I apologize for the looooong thread but If you manage to read it all and could give some advice... I would highly appreciate it!