"Email account is sending too much emails [limitlog]: deny / account /noreply@computeria-solothurn.ch

What do I have to do so that my sender address is not blocked as “Spamer”.

The configuration is as follows:
$ default_system_language = “de”;
// what is your Mysql database server hostname
$ database_host = ‘localhost’;
// what is the name of the database we are using
$ database_name = ‘’;
// what user has access to this database
$ database_user = '’;
// and what is the password to login to control the database
$ database_password = '
’;
// if you have an SMTP server, set it here. Otherwise it will use the normal php mail () function
// # if your SMTP server is called “smtp.mydomain.com” you enter this below like this:
// #
// # define (“PHPMAILERHOST”, ‘smtp.mydomain.com’);
define (‘PHPMAILERHOST’, ‘lx7.hoststar.hosting’);
$ phpmailer_smtpuser = ‘noreply@computeria-solothurn.ch’;
$ phpmailer_smtppassword = '
’;
// #
// # you can set this to send out via a different SMTP port
define (‘PHPMAILERPORT’, 465);
// to use SSL / TLS when sending set this value
// it can either be “ssl” or “tls” or false to not use SSL / TLS at all
define (“PHPMAILER_SECURE”, ‘ssl’);
// #
// if TEST is set to 1 (not 0) it will not actually send ANY messages, but display what it would have sent
// this is here, to make sure you edited the config file and mails are not sent “accidentally”
// on unmanaged systems
define (‘TEST’, 0);

using attachments requires PHP 4.1.0 and up

define (‘ALLOW_ATTACHMENTS’, 1);
// #
define (‘MAILQUEUE_BATCH_SIZE’, 0);
define (‘MAILQUEUE_BATCH_PERIOD’, 3600);
/ *