mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 11:29:12 +02:00
20 lines
912 B
PHP
20 lines
912 B
PHP
<?php
|
|
// ______ __ _______ _______ _______
|
|
//| __ \.---.-.-----.--| |.-----.----.---.-. | ___| | | __|
|
|
//| __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
//|___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
//
|
|
// ============================================================================
|
|
// Copyright (c) 2007-2010 Artica Soluciones Tecnologicas, http://www.artica.es
|
|
// This code is NOT free software. This code is NOT licenced under GPL2 licence
|
|
// You cannnot redistribute it without written permission of copyright holder.
|
|
// ============================================================================
|
|
|
|
//Please setup your config to send emails
|
|
|
|
$email_from = array('pandora@pandorafms.org' => 'Pandora FMS');
|
|
$email_smtpServer = '127.0.0.1';
|
|
$email_smtpPort = 25;
|
|
$email_username = '';
|
|
$email_password = '';
|
|
?>
|