Hello, I did upgrade to ISPConfig 3.2. The upgrade went smooth. I did have some issues with Dovecot and Postfix - as expected - as I have a modified configuration. I did learn quite a lot from you guys, so I was able to resolve the issues quickly. I am still very happy with ISPConfig. Thanks again for your continuing efforts and this great product.
Hi, thank you so much A tip for custom config lines: take notes of what is custom and why in a separate file, so you can easily check if anything needs a change and do those changes fast. I am thinking about a compare system for old - new config, but I can't make any promises as it is difficult to write something for that. Thanks to all contributors and especially @till @Croydon and @Jesse Norell for their hard work.
A simple compare system I use for years: Code: mkdir /tmp/etc-backup cp -r /etc/ /tmp/etc-backup/ ispconfig_update.sh diff -pur /tmp/etc-backup/ /etc/ rm -r /tmp/etc-backup Makes any ISPConfig update a matter of minutes without losing any custom config. Nice side effect: I can also see which changes ISPConfig made to the services' config between versions.