]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - config.php.sample
Overview: Make top margin of bottom row smaller
[irc/unrealircd/unrealircd-webpanel.git] / config.php.sample
index 6726eb846ed634231fd05ca03336ca027851f8e9..53e239ae0b097de95d219f00f72b711ba2e2cd47 100644 (file)
@@ -58,6 +58,7 @@ define(
                */
                //"example_plugin", /* An example plugin */
                //"sql_auth", /* Provides a login page which uses SQL */
+               //"php_mailer", /* Provides ability to send emails on behalf of the admin panel */
        ]
 );
 
@@ -118,3 +119,16 @@ define('DNSBL', [
        "dnsbl.dronebl.org",
        "rbl.efnetrbl.org"
 ]);
+
+/** Your email settings
+ * Requires plugin "php_mailer"
+*/
+define('EMAIL_SETTINGS', [
+    "host" => 'smtp.host.example.com',
+    "port" => 587,
+    "encryption" => 'tls', /* Use 'tls' for STARTTLS or 'ssl' for TLS/SSL
+    "username" => "youremail@example.com", /* The email to login with and send emails from */
+    "password" => "supersecretpassword", /* The password for the above email */
+    "from_name" => "UnrealIRCd Admin Panel",
+
+]);
\ No newline at end of file