We are currently working on our servers, so there may be outages on the domains.Zurzeit wird an unseren Servern gearbeitet, deshalb kann es zu Ausfällen bei den Domains kommen.
function wbmailer() { // set method to send out emails if(defined('WBMAILER_SMTP_HOST')) { // sets Mailer to send messages using SMTP $this->IsSMTP(); $this->Host = "smtp.1und1.de"; // use STMP host defined in config.php $this->SMTPAuth = "true"; // SMTP with authentification $this->Username = "darkinspace@dark-in-space.de"; // SMTP-Username $this->Password = "*******"; } else { // set Mailer to send message using PHP mail() function $this->IsMail();
<?phpdefine('DB_TYPE', 'mysql');define('DB_HOST', 'db1169.1und1.de');define('DB_USERNAME', 'dbo220648054');define('DB_PASSWORD', '********');define('DB_NAME', 'db220648054');define('TABLE_PREFIX', 'wb');define('WB_PATH', dirname(__FILE__));define('WB_URL', 'http://www.dark-in-space.de');define('ADMIN_PATH', WB_PATH.'/admin');define('ADMIN_URL', 'http://www.dark-in-space.de/admin');// some mail provider do not deliver mails send via PHP mail() function as SMTP authentification is missing// in that case activate SMTP for outgoing mails: un-comment next line and specify SMTP host of your domain// define('WBMAILER_SMTP_HOST', 'smtp.1und1.de');require_once(WB_PATH.'/framework/initialize.php');?>