|
50 | 50 | 'host' => env('IMAP_HOST', 'localhost'), |
51 | 51 | 'port' => env('IMAP_PORT', 993), |
52 | 52 | 'protocol' => env('IMAP_PROTOCOL', 'imap'), //might also use imap, [pop3 or nntp (untested)] |
53 | | - 'encryption' => env('IMAP_ENCRYPTION', 'ssl'), // Supported: false, 'ssl', 'tls', 'notls' |
| 53 | + 'encryption' => env('IMAP_ENCRYPTION', 'ssl'), // Supported: false, 'ssl', 'tls', 'notls', 'starttls' |
54 | 54 | 'validate_cert' => env('IMAP_VALIDATE_CERT', true), |
55 | 55 | 'username' => env( 'IMAP_USERNAME', '[email protected]'), |
56 | 56 | 'password' => env('IMAP_PASSWORD', ''), |
|
60 | 60 | 'gmail' => [ // account identifier |
61 | 61 | 'host' => 'imap.gmail.com', |
62 | 62 | 'port' => 993, |
63 | | - 'encryption' => 'ssl', // Supported: false, 'ssl', 'tls' |
| 63 | + 'encryption' => 'ssl', |
64 | 64 | 'validate_cert' => true, |
65 | 65 | 'username' => '[email protected]', |
66 | 66 | 'password' => 'PASSWORD', |
|
69 | 69 | 'another' => [ // account identifier |
70 | 70 | 'host' => '', |
71 | 71 | 'port' => 993, |
72 | | - 'encryption' => false, // Supported: false, 'ssl', 'tls' |
| 72 | + 'encryption' => false, |
73 | 73 | 'validate_cert' => true, |
74 | 74 | 'username' => '', |
75 | 75 | 'password' => '', |
|
0 commit comments