Brandon Yap

Plesk Migration Manager – Only one IPv4 and IPv6 adressess allowed on subscription

If you’ve ever seen this error, you know how frustrating it is. It took me about 3 days to work this one out, but here’s the solution. For some reason, sometimes the httpd includes that Plesk spits out in /var/www/vhosts/<domain>/conf gets out of sync with Plesk, and you might end up with orphaned includes which refer to old IP addresses which are no longer on the system. These still get read by Apache on startup, and cause problems with the Plesk Migration Manager (PMM). To fix, simply remove the unused/old include from the formentioned conf directory, and PMM should migrate […]

Plesk Migration Manager – Only one IPv4 and IPv6 adressess allowed on subscription Read More »

RSS feed for Plesk Panel 10 Microupdates

Updated 09/11/2011 Seeing as Parallels don’t provide an RSS feed for this, I took it upon myself to create one. It’s been working well for a few months now so I thought i’d publish it for the benefit of everyone else who might find this useful. Here it is: http://www.feed43.com/1013588122444128.xml If you discover any problems with it please let me know and i’ll do my best to fix them. Enjoy! Update: Parallels has just introduced their own RSS feed for microupdates, which kinda renders my feed redundant. feed://www.parallels.com/products/plesk/rss I’ll leave my feed up for a little while longer but I see

RSS feed for Plesk Panel 10 Microupdates Read More »

Setting up email notifications in Cerberus Helpdesk

Updated 28/05/2011 Starting with version 5.4, changes have been made which render previous of methods of sending email notifications inoperable. In fact if you upgrade from a previous version to 5.4, your notifications will break. Cerberus 5.4 brings a new functionality called Virtual Attendants. This is what you’ll need to use from now on. Click on Groups. Select a group you’ve created. Click on the Virtual Attendant tab. Create a new behavior of the type “New message on a group conversation”. Add an Action, and call it something like Relay. Add the action “Relay to external email”. Tick the email addresses you

Setting up email notifications in Cerberus Helpdesk Read More »

Enabling mail redirection into Cerberus Helpdesk

Cerberus Helpdesk out of the box isn’t able to accept mails that are redirected or resent to it. In order to make this happen, you’ll need to modify cerb5/api/app/Parser.php and add in a few lines of code. You’ll find this block of code at line 109 (in Cerb 5.4.1). Line numbers for previous version will vary but if you search for “ReturnPath” it should take you there. @$sReturnPath = $this->_headers[‘return-path’]; @$sReplyTo = $this->_headers[‘reply-to’]; @$sFrom = $this->_headers[‘from’]; @$sResentTo = $this->_headers[‘resent-to’]; $from = array(); if(!empty($sReplyTo)) { $from = CerberusParser::parseRfcAddress($sReplyTo); } elseif(!empty($sFrom)) { $from = CerberusParser::parseRfcAddress($sFrom); } elseif(!empty($sReturnPath)) { $from = CerberusParser::parseRfcAddress($sReturnPath); } elseif(!empty($sResentTo))

Enabling mail redirection into Cerberus Helpdesk Read More »

MagicSpam for Plesk review

Updated 19/05/2011 There aren’t a lot of MagicSpam reviews out there, so I thought i’d write something up to let everyone know how we went with it. Overview MagicSpam for Plesk is a spam filtering module for Plesk. It performs best practice and DNSBL checks against all mails coming into the system. The module compliments but does not replace Spamassassin. MagicSpam filters mail pre-smtp but does not do content filtering so it won’t get rid of those Viagra mails, not directly anyway. Installation Installation was fairly easy. Upon purchasing a license, you receive a link to the installation package (we

MagicSpam for Plesk review Read More »

Scroll to Top