Author Topic: 354 Enter message, ending with "." on a line by it  (Read 37075 times)

steve

  • Posts: 78
    • View Profile
354 Enter message, ending with "." on a line by it
« Reply #15 on: January 24, 2007, 02:03:50 pm »
Apollo Hosting is saying that they have made no changes to my service.

This is strange.

I'm not a frequent sender - only about two e-mails per month to groups less than 1,000 people.

Both of my e-mail addresses - the sent from and the bounce to - addresses have their own account on the mail server. Need to do it that way since I am not using bounce.cgi, but using the bounce address and the dailymail cron job to process each night.

I guess I could try setting up the "required authorization" set up next time.

I'd be interested in hearing more from people since this issue seems to have just come up.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
354 Enter message, ending with "." on a line by it
« Reply #16 on: January 24, 2007, 02:18:34 pm »
Hi Guys,

I suspect this could be due to the "timeout" variable.  Some hosts take forever with non-existent domain lookups and ListMail had a variable added so it could "reset" if the server becomes unresponsive and continue queuing your messages at a reasonable speed.  The default is 9 seconds but I'm considering raising it to 30.

You can manually set it in config.php
Code: [Select]
$smtp_timeout = 30;
I would be willing to investigate if you can start a mailing and then leave it for me to resume.

Submit your info here

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

steve

  • Posts: 78
    • View Profile
354 Enter message, ending with "." on a line by it
« Reply #17 on: February 12, 2007, 05:02:06 pm »
Dean,
I just had pretty good luck sending to a list with about 1130 addresses.

I did get an error about two-thirds of the way through, but I waited about three minutes or so and resumed.

The error this time was...

Sending Error. Check your mail settings
Server said"
250 2.1.5 ... Recipient Ok

Strange.

Concerning your offer - if I continue to have trouble, I'll let you know. For my next e-mail, maybe I'll give you a shout to pre-plan timing for the send out and for you to log in and check stuff.

Steve

AlanT

  • Posts: 47
    • View Profile
    • http://www.PowerKeysPub.com
354 Enter message, ending with "." on a line by it
« Reply #18 on: February 28, 2007, 12:20:29 pm »
I've had this problem from time to time on a VPS server that I have administration rights to.

There have been no limits to sending emails, and I've tweaked the Exim settings to speed up the process where possible.

What I found was that this type of error came up when the host server was under a heavy load, as if other websites were stressing the server resources leaving too few resources for the mailing to continue normally.

Whenever I waited for the server load to go down, the problem went away.

Changing the timeout variable from 9 seconds to 30 seconds sounds like a good way to solve the problem.
- Alan

We all have the Power.
All we need are the Keys.
http://www.PowerKeysPub.com

mb

  • Posts: 6
    • View Profile
354 Enter message, ending with "." on a line by it
« Reply #19 on: March 27, 2007, 11:49:24 am »
I had this same problem.

Manually setting the SMTP timeout in config.php as DW stated earlier in this post resolved the issue.

Just paste the following code in your config.php file:

Code: [Select]
$smtp_timeout = 30;

Hope this helps someone resolve this issue quick.