I have configured OTRS with the following environment :
- Windows 2008 R2
- MySQL 5.6
- IIS
Everything is working fine, except the automatic answers.
I can received mails (automatic creation of tickets), and I can manualy send mails during ticket processing.
I also configured some automatic answers but :
- they are not sent
- the CRONw scheduler is stopped
- I received the following message : [Sun Dec 22 18:50:04 2013][Error][Kernel::System::Email::SMTP::Send][122] Can't use from '': 555sorry, invalid MAIL FROM for smtpauth session (http://travaux.ovh.net/?do=details&id=5510)
It seems that "FROM" field in these mails is null or incorrect.
I already have the following parameters :
$Self->{'SendmailModule'} = 'Kernel::System::Email::SMTP';
$Self->{'SendmailModule::Host'} = 'smtp.mydomain.com';
$Self->{'SendmailModule::Port'} = '587';
$Self->{'SendmailModule::AuthUser'} = 'otrs-admin@mydomain.com';
$Self->{'SendmailModule::AuthPassword'} = '**********';
But nothing about the sender address...

Where can I configure this parameter in config.pm ?
Thanks in advance for your help.