Moved strikeout to outside code block

This commit is contained in:
laf
2015-08-28 08:55:46 +00:00
parent ddf800fb16
commit 08368f92f2
+4 -4
View File
@@ -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" <projectid@`hostname`>
$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'] = '[email protected]'; // 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
```~~