config.php
// Click tracking
// If you set this to 1, all links in your emails will be converted to links that
// go via phpList. This will make sure that clicks are tracked. Default: 1
// If you disable a URL conversion, set to 0.
define('CLICKTRACK', 0);
Thank you for this post; it set me on the right path. I found the line you referenced above in the config_extended.php, but it didn’t take effect until I put it into config.php. Also, I didn’t get completely clean URLs in my emails until I added a few additional define statements in, as shown below.
define(‘ALWAYS_ADD_USERTRACK’,0);
define(‘CLICKTRACK’, 0);
define(‘CLICKTRACK_SHOWDETAIL’, 0);