correct reference to pickup folder, for a pickup server

well the last bounce address is the correct one, which is good then. Not sure why its put together the wrong bounce address as its not specified in my server. oh well weird, i'll test it make sure the bounce still works.

cool okay, I'll just up it hourly and hopefully not break it..!

In terms of adding other servers to the config file, do i just replicate this section, in terms of format, exactly? (obviously changing server details);

{
"Hostname" : "XXXXXXX8",
"Port" : 2525,
"Username" : "xxxx",
"Password" : "xxxxx",
"MaxConnections" : 10,
"MaxConnectionMessages" : 10,
"ConnectionTimeout" : 30,
"SendRetriesCount" : 3,
"TestConnection" : false,
"TestRecipientEmail" : ""
}

so when i specify a pickup server, it just looks up the details in the config file?
 
Code:
"DeliveryServers" : [
  {
  "Hostname" : "XXXXXXX8",
  "Port" : 2525,
  "Username" : "xxxx",
  "Password" : "xxxxx",
  "MaxConnections" : 10,
  "MaxConnectionMessages" : 10,
  "ConnectionTimeout" : 30,
  "SendRetriesCount" : 3,
  "TestConnection" : false,
  "TestRecipientEmail" : ""
  },
  {
 "Hostname" : "XXXXXXX8",
  "Port" : 2525,
  "Username" : "xxxx",
  "Password" : "xxxxx",
  "MaxConnections" : 10,
  "MaxConnectionMessages" : 10,
  "ConnectionTimeout" : 30,
  "SendRetriesCount" : 3,
  "TestConnection" : false,
  "TestRecipientEmail" : ""
  }
],
But you have to understand that a second server is used only if all the connections from the first one are occupied :)
 
that's cool thanks

currently slowly testing the speed into power mta at the moment, and trying to make sense of what is controlling what. Looking good so far averging 1,152 emails a minute. Just keen not to overload it

thanks for all the help of late by the way, i have taken up quite a bit of your time here lol, but hopefully this will all help someone else in the future!
 
Back
Top