How to install SOGo on Ubuntu

SOGo is an open source collaborative software server with a focus on simplicity and scalability. It is developed in Objective-C using PostgreSQL, Ubuntu, Apache, and IMAP. It supports CalDAV, CardDAV, GroupDAV, iMIP and iTIP and reuses existing IMAP, SMTP and database servers. In addition, SOGo offers native Microsoft Outlook compatibility using the Open Change backend. We’ll see […]

How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel

How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel ? 1. Disable vsftpd service vsftpd stop update-rc.d -f vsftpd remove 2. Install software package apt-get install proftpd-basic proftpd-mod-vroot 3. Download configuration wget http://c.vestacp.com/0.9.8/debian/proftpd.conf -O /etc/proftpd/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Restart proftpd service proftpd restart

How to replace vsftpd with ProFTPD on a RHEL or CentOS in Vesta Control Panel

Replace vsftpd with ProFTPD on a RHEL or CentOS in Vesta Control Panel 1. Disable vsftpd service vsftpd stop chkconfig vsftpd off 2. Install software package yum install proftpd 3. Download configuration wget http://c.vestacp.com/0.9.8/rhel/proftpd.conf -O /etc/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Enable proftpd chkconfig proftpd on service proftpd start