imap-bundle icon indicating copy to clipboard operation
imap-bundle copied to clipboard

Simple php-imap integration for Symfony

Results 10 imap-bundle issues
Sort by recently updated
recently updated
newest added

Hey, after installing it on my Symfony Docker environment I get the following Error: Attempted to call function "imap_search" from namespace "PhpImap" What can I do to solve this?

After upgrading to symfony 6.1, I'm getting this new deprecation: `Method "Symfony\Component\Config\Definition\ConfigurationInterface::getConfigTreeBuilder()" might add "TreeBuilder" as a native return type declaration in the future. Do the same in implementation "SecIT\ImapBundle\DependencyInjection\Configuration"...

This allows you to use the new php based configuration without hassle: ```php return static function(ImapConfig $imap): void { $imap->connection('some_connection') ->mailbox('a_mailbox'); $imap->connection('second_connection') ->mailbox('another_mailbox'); }; ```

#23 WIP: I need to test it first. Of course i would be glad if someone can help. Symfony dependencies are at 4.4 as the latest supportet LTS from Symfony....

Text that is displeayed in the upper, right corner of the github-page. Actual: Simple php-imap integration for Symfony 2.8, 3.x and 4.x. Suggestion: Simple php-imap integration for Symfony 2-6

https://github.com/secit-pl/imap-bundle/issues/19 I did give a wrong answer in the linked issue. 2.0 to 2.0.3 of php-imap is missing the required `ext-imap: *` https://packagist.org/packages/php-imap/php-imap#2.0.3 I find this out, after i noticed...

@secit-pl Are you open for a PR for a new major version with PHP >= 8.0 and Symfony >= 5.4, strong types and new language level features? Composer handles the...

This is my answer to point 1 at https://github.com/secit-pl/imap-bundle/pull/37#issuecomment-1905650091 * You shouldn't call it "example_connection", cause then it would be injected as `exampleConnectionConnection` ;-) * I also changed `full_config` to...

I keep trying with gmail and zohomail but can't connect. Either I have to enable something on the providers, or I'm not configuring this right. Any suggestions? An example with...

The PHP-IMAP extension will be removed from PHP core with 8.4 (https://php.watch/versions/8.4/imap-unbundled). Maybe it is a good idea to migrate to https://github.com/Webklex/php-imap instead?