meta data for this page
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
plugin:imap2 [2023/02/04 14:22] – created duncanc | plugin:imap2 [2025/02/08 11:00] (current) – [Usage] duncanc | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Imap2 plugin ====== | ||
+ | |||
+ | Description: | ||
+ | Author | ||
+ | |||
+ | source repo : https:// | ||
+ | |||
+ | |||
+ | ===== Purpose ===== | ||
+ | |||
+ | This plugin uses the javanile/ | ||
+ | |||
+ | Those functions are provided by the IMAP extension, but that extension has been removed in php version 8.4. This plugin provides an alternative implementation that will allow phplist to continue processing bounces. | ||
+ | |||
+ | This plugin can also be used with php versions prior to 8.4 if the hosting provider does not provide the IMAP extension. | ||
+ | |||
+ | If your php configuration already includes the IMAP extension then you do not need this plugin. The plugin can be installed but will not have any effect. | ||
+ | |||
+ | |||
+ | ===== Installation ===== | ||
+ | |||
+ | See the README file on the GitHub page https:// | ||
+ | |||
+ | ===== Usage ===== | ||
+ | |||
+ | === Use of localhost === | ||
+ | Using '' | ||
+ | |||
+ | <code php> | ||
+ | use something like | ||
+ | <code php> | ||
+ | |||
+ | === Use IMAP instead of POP3 === | ||
+ | The php-imap2 package supports only the IMAP protocol, not the POP3 protocol. This is compatible with the phplist bounce processing and should not be a problem. | ||
+ | |||
+ | The plugin will detect when POP3 is trying to be used and change the port and protocol to the equivalent IMAP values but for clarity you may want to change the setting in the config.php file. You might also need to change the value of '' | ||
+ | |||
+ | For example, if you currently access the mailbox using POP3 | ||
+ | |||
+ | <code php> | ||
+ | |||
+ | That needs to be changed to use IMAP on port 143 | ||
+ | |||
+ | <code php> | ||
+ | |||
+ | Or if you currently access the mailbox using secure POP3 | ||
+ | |||
+ | <code php> | ||
+ | |||
+ | That needs to be changed to use IMAP on port 993 | ||
+ | |||
+ | <code php> | ||
+ | |||
+ | |||
+ | |||
+ | |||