All posts by sheldon

How to Customize the Footer In WordPress Twenty Thirteen Theme

http://wordpress.org/support/topic/twenty-thirteen-footer-question

SEE: the comment by OGC Member.  He explains how to modify the code in the footer.php file located in the Themes – Twenty Thirteen directory.  Only the second line of his example code needs to be inserted and customized.  Remember to backup the original footer.php file before you make your edits.  I recommend that you install and use the app ‘Notepad++’ as your php files editor.  Windows notepad is rather inadequate.

Example:  You can add your owe copyright notice to replace the phrase Proudly Powered by WordPress.

Email forwarding in iRedMail having only Open-Source iRedAdmin Panel

ZPanel has a graphical admin interface which enables email administrators to easily setup email forwarding per user and per domain.  However, the open-source community version of iRedAdmin panel interface does not contain this same capability.  Only the iRedAdmin Pro version enables administrators to setup email forwarding.

iRedMail and ZPanel each utilize the Postfix email service.  Consequently, if both use a MySql database as their back-end to store user email configurations, then each of their MySql database table structures will be quite similar.  Certain fields of the database tables may be a bit dissimilar.

In order to manually configure an email address to forward all received email (and leave a copy of the email on the server) you must use PhpMyAdmin to edit email box records within the ‘goto’ field of the ‘alias’ table of the ‘vmail’ database.

Example — Before Editing the Record:

address field value — user@maildomain.com
goto field value — user@maildomain.com

Example — After Editing the Record to Provide Forwarding:

address field value — user@maildomain.com
goto field value — user@fwd-domain.com,user@maildomain.com

Notice that the email address where you will forward the email is inserted as the first address in the ‘goto’ field, followed by a comma, and followed by the original email box address.  This configuration keeps each received email in the original mailbox (user@maildomain.com) on the server and forwards a copy of it to the forwarding email address (user@fwd-domain.com).