
Adrián Deccico wrote:
Where I cant put this parameters? In Mercury> In any file?
Sending email from the system is completely independent of Mercury. You just need an smtp host that will accept your user name and password. You put these paramters in your "Config.pm" file. The same that you setup database connections, passwords, etc in. You already have a Config.pm and it should be configured with basic information that was placed there from the WebInstaller. Just search your system for Config.pm. You will find that the sendmail parameters are already in there - just with generic information. In case they are not, here is the complete list of params that you need to add to Config.pm. (Did I mention Config.pm enough? :-) ) $Self->{'SendmailModule'} = 'Kernel::System::Email::SMTP'; $Self->{'SendmailModule::Host'} = 'smtpserver.example.com'; $Self->{'SendmailModule::Port'} = '25'; $Self->{'SendmailModule::AuthUser'} = 'username'; $Self->{'SendmailModule::AuthPassword'} = 'password'; Hth, Tyler