From 08368f92f2fdb22256de0d418c9ca59e154babca Mon Sep 17 00:00:00 2001 From: laf Date: Fri, 28 Aug 2015 08:55:46 +0000 Subject: [PATCH] Moved strikeout to outside code block --- doc/Extensions/Email-Alerting.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/Extensions/Email-Alerting.md b/doc/Extensions/Email-Alerting.md index 0cb61dc9d2..fc20362e95 100644 --- a/doc/Extensions/Email-Alerting.md +++ b/doc/Extensions/Email-Alerting.md @@ -8,9 +8,9 @@ ~~Currently, the email alerts needs to be set up in the config. If you want to enable it, paste this in your config and change it:~~ -```php +~~```php // Mailer backend Settings -~~$config['email_backend'] = 'mail'; // Mail backend. Allowed: "mail" (PHP's built-in), "sendmail", "smtp". +$config['email_backend'] = 'mail'; // Mail backend. Allowed: "mail" (PHP's built-in), "sendmail", "smtp". $config['email_from'] = NULL; // Mail from. Default: "ProjectName" $config['email_user'] = $config['project_id']; $config['email_sendmail_path'] = '/usr/sbin/sendmail'; // The location of the sendmail program. @@ -27,5 +27,5 @@ $config['alerts']['email']['default'] = 'sendto@somewhere.com'; // Defau $config['alerts']['email']['default_only'] = FALSE; // Only use default recipient $config['alerts']['email']['enable'] = TRUE; // Enable email alerts $config['alerts']['bgp']['whitelist'] = NULL; // Populate as an array() with ASNs to alert on. -$config['alerts']['port']['ifdown'] = FALSE; // Generate alerts for ports that go down~~ -``` +$config['alerts']['port']['ifdown'] = FALSE; // Generate alerts for ports that go down +```~~