Explorar el Código

Update Getting Started

FusionPBX hace 7 meses
padre
commit
4eedd0956b

+ 8 - 9
source/getting_started.rst

@@ -16,13 +16,12 @@ Follow the menu to the left and you will have a working PBX in no time. For PDF
   :maxdepth: 3
   :glob:
 
-  getting_started/training.rst
+  getting_started/training.md
   getting_started/quick_install.md
-  getting_started/quick_install.rst
-  getting_started/lets_encrypt.rst
-  applications/provision.rst
-  getting_started/security.rst
-  getting_started/backup.rst
-  getting_started/restore.rst
-  firewall.rst
-  getting_started/languages.rst
+  getting_started/lets_encrypt.md
+  applications/provision.md
+  getting_started/security.md
+  getting_started/backup.md
+  getting_started/restore.md
+  firewall.md
+  getting_started/languages.md

+ 20 - 24
source/getting_started/backup.md

@@ -1,7 +1,5 @@
 # Backup
 
-| 
-
 It\'s always good to have a backup method in place. Here are the steps
 to a basic backup method with FusionPBX. The install script on Debian
 will automatically copy this backup script to
@@ -14,10 +12,12 @@ Be sure to change the password by replacing the zzzzzzzz in
 PGPASSWORD=\"zzzzzzzz\" with your database password. You can get the
 password from /etc/fusionpbx/config.php.
 
+```
     cd /etc/cron.daily
     nano fusionpbx-backup
+```
 
-
+```
     #!/bin/sh
 
     export PGPASSWORD="zzz"
@@ -43,25 +43,20 @@ password from /etc/fusionpbx/config.php.
 
     #source
     #tar -zvcf /var/backups/fusionpbx/backup_$now.tgz /var/backups/fusionpbx/postgresql/fusionpbx_pgsql_$now.sql /var/www/fusionpbx /usr/local/freeswitch/scripts /usr/local/freeswitch/storage /usr/local/freeswitch/recordings /etc/fusionpbx /usr/local/freeswitch/conf /usr/local/freeswitch/sounds/music/
-
-#sync certificate directory rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/ /etc rsync -avz -e \'ssh -p
-22\'
-root@\$ssh[server]{#server}:/usr/src/fusionpbx-install.sh/debian/resources/letsencrypt.sh
-/usr/src/fusionpbx-install.sh/debian/resources/ rsync -avz -e \'ssh -p
-22\' root@\$ssh[server]{#server}:/etc/dehydrated/accounts/
-/etc/dehydrated/ rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/chains/ /etc/dehydrated/
-rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/config/ /etc/dehydrated/
-rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/config/ /etc/dehydrated/
-rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/hook.sh /etc/dehydrated/
-rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/etc/dehydrated/certs/ /etc/dehydrated/certs
-rsync -avz -e \'ssh -p 22\'
-root@\$ssh[server]{#server}:/usr/src/dehydrated /usr/src/
+```
+
+## sync certificate directory 
+```
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/ /etc 
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/usr/src/fusionpbx-install.sh/debian/resources/letsencrypt.sh /usr/src/fusionpbx-install.sh/debian/resources/ 
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/accounts/ /etc/dehydrated/ 
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/chains/ /etc/dehydrated/
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/config/ /etc/dehydrated/
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/config/ /etc/dehydrated/
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/hook.sh /etc/dehydrated/
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/etc/dehydrated/certs/ /etc/dehydrated/certs
+rsync -avz -e \'ssh -p 22\' root@\$ssh[server]{#server}:/usr/src/dehydrated /usr/src/
+```
 
 > echo \"Backup Completed\"
 
@@ -72,7 +67,7 @@ use FreeSWITCH package paths. If you have an older install using source
 be sure to change this by commenting the package line #22 and uncomment
 the source line #25.)
 
-Crontab (optional) \^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^\^
+## Crontab (optional)
 
 Files in /etc/cron.daily will execute automatically if they don\'t have
 an extension like .sh for this reason the backup script was renamed from
@@ -80,12 +75,13 @@ fusionpbx-backup.sh to fusionpbx-backup and then it runs nightly without
 needing to use crontab.
 
 Setting crontab -e
-
+```
     crontab -e
     Choose 1 for nano
     Goto the last blank line and paste in the next line.
     0 0 * * * /bin/sh /etc/cron.daily/fusionpbx-backup.sh
     press enter then save and exit.
+```
 
 Once this is complete you will have the backup ready to execute by
 ./fusionpbx-backup or from the daily cron job.

+ 0 - 84
source/getting_started/backup.rst

@@ -1,84 +0,0 @@
-*****************
-Backup
-*****************
-
-|
-
-It's always good to have a backup method in place.  Here are the steps to a basic backup method with FusionPBX. The install script on Debian will automatically copy this backup script to /etc/cron.daily/fusionpbx-backup. Backups get stored in /var/backups/fusionpbx/postgresql by default.
-
-Command Line
-^^^^^^^^^^^^^^
-
-Be sure to change the password by replacing the zzzzzzzz in PGPASSWORD="zzzzzzzz" with your database password. You can get the password from /etc/fusionpbx/config.php.
-
-
-::
-
- cd /etc/cron.daily
- nano fusionpbx-backup
-
-
- #!/bin/sh
- 
- export PGPASSWORD="zzz"
- db_host=127.0.0.1
- db_port=5432
- 
- now=$(date +%Y-%m-%d)
- mkdir -p /var/backups/fusionpbx/postgresql
- 
- echo "Backup Started"
- 
- #delete postgres backups
- find /var/backups/fusionpbx/postgresql/fusionpbx_pgsql* -mtime +4 -exec rm {} \;
- 
- #delete the main backup
- find /var/backups/fusionpbx/*.tgz -mtime +2 -exec rm {} \;
- 
- #backup the database
- pg_dump --verbose -Fc --host=$db_host --port=$db_port -U fusionpbx fusionpbx --schema=public -f /var/backups/fusionpbx/postgresql/fusionpbx_pgsql_$now.sql
- 
- #package
- #tar --exclude='/var/lib/freeswitch/recordings/*/archive' -zvcf /var/backups/fusionpbx/backup_$now.tgz /var/backups/fusionpbx/postgresql/fusionpbx_pgsql_$now.sql /var/www/fusionpbx /usr/share/freeswitch/scripts /var/lib/freeswitch/storage /var/lib/freeswitch/recordings /etc/fusionpbx /etc/freeswitch /usr/share/freeswitch/sounds/music/
-
- #source
- #tar -zvcf /var/backups/fusionpbx/backup_$now.tgz /var/backups/fusionpbx/postgresql/fusionpbx_pgsql_$now.sql /var/www/fusionpbx /usr/local/freeswitch/scripts /usr/local/freeswitch/storage /usr/local/freeswitch/recordings /etc/fusionpbx /usr/local/freeswitch/conf /usr/local/freeswitch/sounds/music/
- 
-#sync certificate directory
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/ /etc
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/usr/src/fusionpbx-install.sh/debian/resources/letsencrypt.sh /usr/src/fusionpbx-install.sh/debian/resources/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/accounts/ /etc/dehydrated/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/chains/ /etc/dehydrated/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/config/ /etc/dehydrated/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/config/ /etc/dehydrated/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/hook.sh /etc/dehydrated/
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/dehydrated/certs/ /etc/dehydrated/certs
-rsync -avz -e 'ssh -p 22' root@$ssh_server:/usr/src/dehydrated /usr/src/
-
- 
- echo "Backup Completed"
-
-
-To save the file press ctrl + x then y to save it.
-
-
-You should have the script ready to execute. (Default the script will use FreeSWITCH package paths.  If you have an older install using source be sure to change this by commenting the package line #22 and uncomment the source line #25.)
- 
-Crontab (optional)
-^^^^^^^^^^^^^^^^^
-
-Files in /etc/cron.daily will execute automatically if they don't have an extension like .sh for this reason the backup script was renamed from fusionpbx-backup.sh to fusionpbx-backup and then it runs nightly without needing to use crontab.
-
-Setting crontab -e
- 
-::
-
- crontab -e
- Choose 1 for nano
- Goto the last blank line and paste in the next line.
- 0 0 * * * /bin/sh /etc/cron.daily/fusionpbx-backup.sh
- press enter then save and exit.
- 
-
-Once this is complete you will have the backup ready to execute by ./fusionpbx-backup or from the daily cron job. 
-

+ 7 - 7
source/getting_started/installation_recommended.md

@@ -21,7 +21,7 @@ CLICK HERE FOR THE NEW INSTALL
 >     chmod 755 install_fusionpbx.sh 
 >     ./install_fusionpbx.sh install-both auto 
 
-| 
+
 
 > **2.** The install script will apt-get update/upgrade the system and
 > ask you a few questions
@@ -35,7 +35,7 @@ CLICK HERE FOR THE NEW INSTALL
 >
 > *It can take between 15-30 minutes to compile and install*
 
-| 
+
 
 > **3.** Goto a web browser and enter the ip address :
 >
@@ -51,7 +51,7 @@ CLICK HERE FOR THE NEW INSTALL
 >     Create Database Username: Leave_Blank
 >     Create Database Password: Leave_Blank
 
-| 
+
 
 > 
 >
@@ -64,7 +64,7 @@ CLICK HERE FOR THE NEW INSTALL
 >
 >     ![image](../_static/images/install_lang.jpg)
 
-| 
+
 
 > 
 >
@@ -75,7 +75,7 @@ CLICK HERE FOR THE NEW INSTALL
 >
 > **Don\'t change anything here**
 
-| 
+
 
 > 
 >
@@ -86,7 +86,7 @@ CLICK HERE FOR THE NEW INSTALL
 >
 > **Don\'t change anything here**
 
-| 
+
 
 > 
 >
@@ -124,7 +124,7 @@ CLICK HERE FOR THE NEW INSTALL
 >     Password: YourPasswordYouPicked
 >     Checking to see if FreeSWITCH is running!
 
-| 
+
 
 > 
 >

+ 0 - 141
source/getting_started/installation_recommended.rst

@@ -1,141 +0,0 @@
-*************
-Old Install
-*************
-.. image:: ../_static/images/logo_right.png
-        :scale: 85% 
-
-
-
-CLICK HERE FOR THE NEW INSTALL http://docs.fusionpbx.com/en/latest/getting_started/installation_recommended_new.html
-
-
-    Welcome to the FUSIONPBX getting started guide.  In this section we will show how to install FUSIONPBX.  FUSIONPBX can be used on multiple different operating systems, databases, and web servers.  In this guide we will show on Debian 8 (Jessie), Postgresql and NGINX.  **Please note to have a clean install.  The install script will install everthing but the Operating System**
-    
-    
-    **1.** Goto a console and follow the recomended steps from http://fusionpbx.com/download.php  
-     
-    ::
-     
-     cd /usr/src 
-     apt-get install wget  
-     wget https://raw.githubusercontent.com/fusionpbx/fusionpbx-scripts/master/install/debian/install_fusionpbx.sh  
-     chmod 755 install_fusionpbx.sh 
-     ./install_fusionpbx.sh install-both auto 
-     
-|
-
-    **2.** The install script will apt-get update/upgrade the system and ask you a few questions
-     
-     
-    ::
-     
-     The pgsql username is fusionpbx
-     The pgsql database name is fusionpbx
-     Please provide a password for the fusionpbx user
-      Password:IloveFusionpbx
-     Let's repeat that
-      Password:IloveFusionpbx
-     
-    *It can take between 15-30 minutes to compile and install*
-
-|
-
-    **3.** Goto a web browser and enter the ip address
-    ::
-     
-     Now you'll need to manually finish the install and come back
-     This way I can finish up the last bit of permissions issues
-     Just go to
-     http://ur_domain_or_ip.com
-     MAKE SURE YOU CHOOSE PostgreSQL as your Database on the first page!!!
-     ON the Second Page:
-     Database Name: fusionpbx
-     Database Username: fusionpbx
-     Database Password: whateveryouentered
-     Create Database Username: Leave_Blank
-     Create Database Password: Leave_Blank
- 
-|
-
-     
-    **4.** Web browser Installation part
-     :Select Language: **Pick your language. Click next**
-
-     .. image:: ../_static/images/install_lang.jpg
-        :scale: 85%
-
-|
-
-     :Freeswitch Detect: **Detecting folder paths used**
- 
-     .. image:: ../_static/images/install_detect_freeswitch.jpg
-        :scale: 85% 
-
-     
-     **Don't change anything here**
-    
-|
-
-     :Database Configuration: **Click Execute**
-
-     .. image:: ../_static/images/install_database_config.jpg
-        :scale: 85% 
-     
-     **Don't change anything here** 
-     
-|
-
-     :Admin Login Configuration: **Click Next**
-
-     .. image:: ../_static/images/install_admin_username.jpg
-        :scale: 85% 
-     
-     This will create the superadmin login that will be used in your web browser.
-
- 
-|
-
-    **5.** Goto Console and press enter 
-    ::
-
-     When PostgreSQL is configured come back and press enter.
-     
-     The FusionPBX installation changed permissions of /usr/local/freeswitch/storage
-     Waiting on you to finish installation (via browser), I'll clean up
-     the last bit of permissions when you finish.Waiting on /var/www/fusionpbx/resources/config.php
-     
-     /var/www/fusionpbx/resources/config.php Found!
-     Waiting 5 more seconds to be sure.
-     .....   Fixing...
-     FIXED
-     Setting up Fail2Ban for FusionPBX
-     
-     
-     
-     Installation Completed.  Now configure FreeSWITCH via the FusionPBX browser interface
-     
-     http://104.233.77.151
-     Default login is (whatever you picked in the GUI install):
-     User: WhateverUsernameYouPicked
-     Password: YourPasswordYouPicked
-     Checking to see if FreeSWITCH is running!
-        
-     
-    
-|
-
-     :Install Finished:  **Login with the username and password you choose during the install**
-     
-     
-      .. image:: ../_static/images/ilogin.jpg
-        :scale: 50%
-      
-    
-|
-
-**Note**: To display the logo at the top and not in the menu
-
-::
-
-  go to advanced -> default settings >  menu_style >  set to inline
-

+ 17 - 36
source/getting_started/installation_recommended_new.md

@@ -2,37 +2,17 @@
 
 ![image](../_static/images/logo_right.png)
 
-## \|
 
-### \|
 
 **Please follow the link below for the newest install guide**
 
 <http://docs.fusionpbx.com/en/latest/getting_started/quick_install.html>
 
-## \|
 
-## \|
-
-## \|
-
-## \|
-
-## \|
-
-## \|
-
-## \|
-
-## \|
-
-## \|
-
-| 
 
 New Install Video <https://www.youtube.com/embed/oioW1i8bieM>
 
-| 
+
 
 Welcome to the FUSIONPBX getting started guide. In this section we will
 show how to install FUSIONPBX. FUSIONPBX can be used on multiple
@@ -56,10 +36,10 @@ Fail2ban, NGINX, PHP FPM and PostgreSQL.
 Also, be sure to watch the youtube video from FreeSWITCH Cluecon Weekly
 <https://www.youtube.com/embed/kejAxlYSW3o> FusionPBX is installed and
 more!
-
+```
     wget https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/install.sh -O install.sh && sh install.sh
+```
 
-| 
 
 **2.** At the end of the install the script will instruct you to go to
 the ip address of the server in your web browser to finish the install.
@@ -73,7 +53,7 @@ After you have completed the install you can login with the GUI username
 and password you chose during the install. After you login, go to the
 menu and choose Advanced -\> Upgrade select the checkbox for App
 defaults then execute.
-
+```
     PostgreSQL
     Database name: fusionpbx
     Database username: fusionpbx
@@ -82,15 +62,15 @@ defaults then execute.
     Complete the install by by going to the IP address of this server
     in your web browser or with a domain name for this server.
     https://000.000.000.000
+```
 
 *It can take between 2-10 minutes to install* (Depending on internet
 speed)
 
-| 
-
 **3.** Goto a web browser and enter the ip address
 
 :   Go to
+```
         https://000.000.000.000
         When you get to the database part choose
         Postgresql
@@ -99,8 +79,8 @@ speed)
         Database Password: generated_password
         Create Database Username: Leave_Blank
         Create Database Password: Leave_Blank
+```
 
-| 
 
 **4.** Web browser Installation part
 
@@ -108,7 +88,7 @@ speed)
 
     ![image](../_static/images/install_lang_new.jpg)
 
-| 
+
 
 Freeswitch Detect **Detecting folder paths used**
 
@@ -116,13 +96,13 @@ Freeswitch Detect **Detecting folder paths used**
 
 **Don\'t change anything here**
 
-| 
+
 
 Database Configuration **Click Next**
 
 ![image](../_static/images/install_database_config_new.jpg)
 
-| 
+
 
 Admin Login Configuration **Click Next**
 
@@ -131,14 +111,14 @@ Admin Login Configuration **Click Next**
 This will create the superadmin login that will be used in your web
 browser.
 
-| 
+
 
 Install Finished **Login with the username and password you choose
 during the install**
 
 ![image](../_static/images/ilogin.jpg)
 
-| 
+
 
 Run App defaults
 
@@ -146,7 +126,7 @@ Run App defaults
 
 ![image](../_static/images/fusionpbx_upgrade_app_defaults.jpg)
 
-| 
+
 
 Start Sip Profiles
 
@@ -154,7 +134,7 @@ Start Sip Profiles
 
 ![image](../_static/images/fusionpbx_sip_status.jpg)
 
-| 
+
 
 Start Memcached
 
@@ -162,7 +142,7 @@ Start Memcached
 
 ![image](../_static/images/fusionpbx_start_memcached.jpg)
 
-| 
+
 
 **Note**: To display the logo at the top and not in the menu
 
@@ -175,7 +155,7 @@ Settings for voicemail to email and for fax notifications.
 Goto Advanced \> Default Settings and under the `Email` Section. Make
 sure these settings are enabled. Once these values are set press the
 **Reload** button at the top right of the page. :
-
+```
     method         text    smtp    
     smtp_auth      var     true    
     smtp_from      var     [email protected]      
@@ -185,6 +165,7 @@ sure these settings are enabled. Once these values are set press the
     smtp_port      numeric     587 
     smtp_secure        var     tls 
     smtp_username  var     [email protected] 
+```
 
 To see if there are any failed email attempts goto Status \> Emails.
 Once the issue causing the emails to fail is found you can click to

+ 0 - 219
source/getting_started/installation_recommended_new.rst

@@ -1,219 +0,0 @@
-*************
-OLD Install
-*************
-.. image:: ../_static/images/logo_right.png
-        :scale: 85% 
-
-|
-|
-|
-|
-|
-**Please follow the link below for the newest install guide**
-
-http://docs.fusionpbx.com/en/latest/getting_started/quick_install.html 
-
-
-
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-|
-
-
-
-
-
-
-
-
-
-
-New Install Video https://www.youtube.com/embed/oioW1i8bieM
-
-|
-
-Welcome to the FUSIONPBX getting started guide.  In this section we will show how to install FUSIONPBX.  FUSIONPBX can be used on multiple different operating systems, databases, and web servers.  In this guide we will show on Debian 8 (Jessie), Postgresql and NGINX.  **Please note to have a clean install.  The install script will install everything but the Operating System**
-    
-    
-**1.** Goto a console and follow the recommended steps from https://fusionpbx.com/app/www/download.php for a standard installation.  Some installations require special considerations.  Visit https://github.com/fusionpbx/fusionpbx-install.sh Readme section for more details.
-
-This install script is designed to be a fast, simple, and modular way to install FusionPBX. Start with a minimal install of Debian 8 with SSH enabled. Run the following commands under root. The script installs FusionPBX, FreeSWITCH release package and its dependencies, IPTables, Fail2ban, NGINX, PHP FPM and PostgreSQL.
-
-Also, be sure to watch the youtube video from FreeSWITCH Cluecon Weekly https://www.youtube.com/embed/kejAxlYSW3o FusionPBX is installed and more!
-     
-::
-     
-  wget https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/install.sh -O install.sh && sh install.sh
-     
-|
-
-**2.** At the end of the install the script will instruct you to go to the ip address of the server in your web browser to finish the install. The script will also provide a secure random database password for you to use during the web based phase of the install. The install script builds the fusionpbx database so you will not need to use the create database username and password on the last page of the web based install.
-
-After you have completed the install you can login with the GUI username and password you chose during the install. After you login, go to the menu and choose Advanced -> Upgrade select the checkbox for App defaults then execute. 
-     
-
-::
-
-   PostgreSQL
-   Database name: fusionpbx
-   Database username: fusionpbx
-   Database password: PasswordSuperSecureFusionPBX
-
-   Complete the install by by going to the IP address of this server
-   in your web browser or with a domain name for this server.
-   https://000.000.000.000
-
-*It can take between 2-10 minutes to install* (Depending on internet speed)
-
-|
-
-**3.** Goto a web browser and enter the ip address
-    ::
-     
-     Go to
-     https://000.000.000.000
-     When you get to the database part choose
-     Postgresql
-     Database Name: fusionpbx
-     Database Username: fusionpbx
-     Database Password: generated_password
-     Create Database Username: Leave_Blank
-     Create Database Password: Leave_Blank
- 
-|
-
-     
-**4.** Web browser Installation part
-    Select Language **Pick your language. Click next**
-    
-    .. image:: ../_static/images/install_lang_new.jpg
-        :scale: 85%
-
-|
-
-Freeswitch Detect **Detecting folder paths used**
-    
-.. image:: ../_static/images/install_detect_freeswitch_new.jpg
-        :scale: 85% 
-
-**Don't change anything here**
-    
-|
-
-Database Configuration **Click Next**
-
-.. image:: ../_static/images/install_database_config_new.jpg
-        :scale: 85% 
-     
-     
-|
-
-Admin Login Configuration **Click Next**
-
-.. image:: ../_static/images/install_admin_username_new.jpg
-        :scale: 85% 
-     
-This will create the superadmin login that will be used in your web browser.
-
-|
-
-Install Finished  **Login with the username and password you choose during the install**
-     
-     
-.. image:: ../_static/images/ilogin.jpg
-        :scale: 80%
-      
-    
-
-|
-
-Run App defaults
-
-::
-
-  Go to the menu and choose Advanced -> Upgrade select the checkbox for App Defaults then execute.
-  
-.. image:: ../_static/images/fusionpbx_upgrade_app_defaults.jpg
-        :scale: 85%  
-
-|
-
-Start Sip Profiles
-
-::
-
-  Go to Status -> SIP Status and start the SIP profiles
-
-.. image:: ../_static/images/fusionpbx_sip_status.jpg
-        :scale: 85%
-
-|
-
-Start Memcached
-
-::
-
-    Go to Advanced -> Modules and find the module Memcached and click start.
-    
-.. image:: ../_static/images/fusionpbx_start_memcached.jpg
-        :scale: 85%
-        
-|
-
-**Note**: To display the logo at the top and not in the menu
-
-::
-
-  go to advanced -> default settings >  menu_style >  set to inline
-
-Voicemail to Email
-====================
-
-Settings for voicemail to email and for fax notifications.
-
-
-Goto Advanced > Default Settings and under the ``Email`` Section. Make sure these settings are enabled. Once these values are set press the **Reload** button at the top right of the page.
-::
-
- method			text  	smtp 	
- smtp_auth		var  	true  	
- smtp_from		var  	[email protected] 	  	
- smtp_from_name	var  	Voicemail	  	
- smtp_host		var  	smtp.gmail.com 	  	
- smtp_password	var  	******* 	  	
- smtp_port		numeric  	587	
- smtp_secure		var  	tls	
- smtp_username	var  	[email protected] 
-
-
-To see if there are any failed email attempts goto Status > Emails.  Once the issue causing the emails to fail is found you can click to resent them.
-
-**Note**: The log is stored in the /tmp directory.
-
-
-