Backup MX

Från: http://www.junkemailfilter.com/spam/free_mx_backup_service.html

Here’s how it works. Suppose your domain is ”example.com” and your MX record is ”mail.example.com”. You would add two more MX records as follows:

mail.example.com 10
mxbackup1.junkemailfilter.com 20
mxbackup2.junkemailfilter.com 30

Spara inställningar postfix

If you need to alter the result and retain your changes between installs/updates then you have to copy the respective file (_postfix.conf.master) from the install archive to the */usr/local/ispconfig/server/conf-custom/install folder and edit it accordingly.

Next time when you will install/update your inspconfig the templates residing in conf-custom/install in will take precedence to the ones available in the install/update archive.

Backup/redirection MX ghettosmtp

You’re all set up! Just change your domain’s MX records to in1.ghettosmtp.com and in2.ghettosmtp.com. Please don’t use only one of those two, and don’t prioritize in2 over in1. Once you do that you’ll be getting email sent down to your mail server.

Port är inte ändrad i postfix, bara brandväggen, port 2528

Inställningar tema nova-lite

Ändra i filen wp-content/themes/nova-lite/core/templates/after-content.php
Rad 16 och 17, det ska vara the_content();

<?php 

/**
 * Wp in Progress
 * 
 * @author WPinProgress
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * It is also available at this URL: http://www.gnu.org/licenses/gpl-3.0.txt
 */

function novalite_after_content_function() {

	if ((is_home()) || (is_category()) || (is_page() )):
		
		//the_excerpt(); 
		the_content();
	else:
	
		the_content();
		the_tags( '<footer class="line"><span class="entry-info"><strong>'.__( 'Tags','novalite').':</strong> ', ', ', '</span></footer>' );

		if ( get_post_format() )  {
			echo '<footer class="line"><span class="entry-info"><strong>'.__( 'Post type','novalite').':</strong> '.ucfirst(get_post_format()).'</span></footer>';
		} 

		comments_template();
	
	endif;

} 

add_action( 'novalite_after_content', 'novalite_after_content_function', 10, 2 );

?>