Hi there,
Recently installed a new copy of roundcube on a new server. I currently have a working install on another machine, which works like a charm. (using it right now actually) Now when I try to send mail on the new server, I get a "Sending Failed" message. This new server runs postfix/courier-imap, and is perfectly able to send mail via telnet. The error I get in my syslog when trying to send via is this:
Feb 1 02:51:09 navi postfix/sendmail[11922]: fatal: usage: sendmail [options]
I've tried sending mail via the new box with multiple imap clients, both webbased and desktop based, and all of them work flawlessly. Any suggestions?
Server is running: Debian Stable / Postfix / Courier-imap
Thanks in advance,
Michiel Oosterling
What are your smtp setting in the main.inc file?
Also, this is in your headers, I don't know if that would be confusing sendmail at all. X-Amavis-Alert: BAD HEADER Improper use of control character (char 0D hex) in message header 'MIME-Version': MIME-Version: 1.0\r\n
On Wed, 1 Feb 2006, Michiel Oosterling wrote:
HI there,
Sorry for the late reply. On Feb 1, 2006, at 2:23 PM, Jon Daley wrote:
What are your smtp setting in the main.inc file?
This is what is there now:
// use this host for sending mails. // to use SSL connection, set ssl://smtp.host.com // if left blank, the PHP mail() function is used $rcmail_config['smtp_server'] = '';
// SMTP port (default is 25; 465 for SSL) $rcmail_config['smtp_port'] = 25;
// SMTP username (if required) if you use %u as the username RoundCube // will use the current username for login $rcmail_config['smtp_user'] = '';
// SMTP password (if required) if you use %p as the password RoundCube // will use the current user's password for login $rcmail_config['smtp_pass'] = '';
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use // best server supported one) $rcmail_config['smtp_auth_type'] = '';
// Log sent messages $rcmail_config['smtp_log'] = TRUE;
The email with that header came from another install of RC, which
works fine for me.
It's this new one that is giving me headaches ...
Altho after copy-pasting the relevant info from the main.inc.php
file, I have another idea I am going to test right now, which is that
it might be a fault somewhere in PHP. I'm running PHP5 on this box,
and it might that the given sendmail path and options are incorrect
for some reason (/usr/sbin/sendmail -t -i). Altho when simply typing
that in a shell, sendmail seems to get activated.
Anyways, I'll test this, might be handy to know for future RC installs.
Regards,
Michiel