• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Upgrade Horde?

J

Jason Lee

Guest
Is it possible to upgrade the version of horde that plesk has installed to the latest CVS version? or has SW Soft made changes to horde that would make this next to impossible to do?
 
Hi Jason !

Well about Horde itself I don't know exactly, but I have installed MIMP (mobile mail) from CVS succesfully.

All you have to do is changing the paths:

-move all the configs to /etc/psa-horde and place a symlink in their original places (/usr/share/psa-horde/...)
-change the paths in the registry.d, look how the existing registries have changed by Plesk. Also copy the additional lines from your existing horde/registry.php to your new.
-move the docs to /usr/share/docs and also place a symink in their old places, but you could also leave them where they are I guess.
-be sure to set the correct horde basedir in the config (/usr/share/psa-horde).

For MIMP there are some changes more to do, ask me if this is what you want. For me MIMP is a MUST-HAVE, if you want to stay informed about incoming mails outdoors without a notebook.

p.s.: before you start make a backup of your existing files :D

Kind Regards,
Bart
 
Hi,

I made a backup of horde and updated everything to the versions available in CVS with no problems. I didn't have to move anything. Everything seems to work fine.

MIMP is on my list of must install. Any pointers you could offer would be usefull.

Edit: Nevermind. Got MIMP running perfectly.
 
Originally posted by Jason Lee
Hi,

I made a backup of horde and updated everything to the versions available in CVS with no problems. I didn't have to move anything. Everything seems to work fine.

MIMP is on my list of must install. Any pointers you could offer would be usefull.

Edit: Nevermind. Got MIMP running perfectly.

WIth that sig I couldn't resist quoting you.

You can always check out www.atomicrocketturtle.com for updates like this.
 
That is the horde provided by SW Soft. Which isn't the most recent version of Horde.
 
For MIMP there are some changes more to do, ask me if this is what you want. [/B]

Could you write some more about the changes you've made?

I've just installed MIMP and got it working - except from getting MIMP able to login to the server - seems the PSA/password hook isen't right or something like that... I'm not sure.

Anybody? :)
 
Hi !

Have you (re)placed this in your /etc/psa-horde/mimp/servers.php ?

-------------------------------------------------------------
$servers['_prompt'] = array(
'name' => _("Choose a mail server:")
);

// get hostname from http URL (patch for Plesk)
$headers = getallheaders();
$ServerName = preg_replace('/^webmail\./', '', preg_replace('/^www\./', '', $headers['Host']));
$DomainName = ($ServerName != '') ? $ServerName : '@DEFAULT_SERVERNAME@';

$servers['imap'] = array(
'name' => 'IMAP Server',
'server' => 'localhost',
'hordeauth' => false,
'protocol' => 'imap/notls',
'port' => 143,
'folders' => 'INBOX.',
'namespace' => '',
'maildomain' => $DomainName,
'smtphost' => 'localhost',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'dotfiles' => false,
'hierarchies' => array()
);

$servers['cyrus'] = array(
'name' => 'Cyrus IMAP Server',
'server' => 'localhost',
'hordeauth' => false,
'protocol' => 'imap/notls',
'port' => 143,
'folders' => '',
'namespace' => 'INBOX.',
'maildomain' => $DomainName,
'smtphost' => 'localhost',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'admin' => array(
'params' => array(
'login' => 'cyrus',
'password' => 'cyrus_pass',
// The 'userhierarchy' parameter defaults to 'user.'
// If you are using a nonstandard hierarchy for personal
// mailboxes, you will need to set it here.
'userhierarchy' => 'user.',
// Although these defaults are normally all that is required,
// you can modify the following parameters from their default
// values.
'protocol' => 'imap/notls',
'hostspec' => 'localhost',
'port' => 143
)
),
'quota' => array(
'driver' => 'cyrus',
'params' => array(
'login' => 'cyrus',
'password' => 'cyrus_pass',
// The 'userhierarchy' parameter defaults to 'user.'
// If you are using a nonstandard hierarchy for personal
// mailboxes, you will need to set it here.
'userhierarchy' => 'user.',
// Although these defaults are normally all that is required,
// you can modify the following parameters from their default
// values.
'protocol' => 'imap/notls',
'hostspec' => 'localhost',
'port' => 143
)
),
'acl' => array(
'driver' => 'rfc2086',
),
'dotfiles' => false,
'hierarchies' => array());

$servers['pop'] = array(
'name' => 'POP3 Server',
'server' => 'localhost',
'hordeauth' => false,
'protocol' => 'pop3',
'port' => 110,
'folders' => '',
'namespace' => '',
'maildomain' => $DomainName,
'smtphost' => 'localhost',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'dotfiles' => false,
'hierarchies' => array()
);

------------------------------------------------------

Regards,
Bart
 
Is there a "dummie"-guide on how to upgrade Horde? (I'm running Plesk 7.5.4)
 
I have a question to those who have allready installed mimp sucsessfully.

How can I access to the setup menu in horde. Has Plesk left this out?
If there is no possibility to access the administration menu, how can I generate the /mimp/config/conf.php ?

Felix
 
Back
Top