Skip to content

Commit

Permalink
Added support for Migadu, postale.io and mailbox.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick243 authored and josaphatim committed Oct 2, 2023
1 parent 598f837 commit dca56f8
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions modules/nux/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,45 @@
'tls' => true
)
));

Nux_Quick_Services::add('migadu', array(
'server' => 'imap.migadu.com',
'type' => 'imap',
'tls' => true,
'port' => 993,
'name' => 'Migadu',
'auth' => 'login',
'smtp' => array(
'server' => 'smtp.migadu.com',
'port' => 465,
'tls' => true
)
));

Nux_Quick_Services::add('postale', array(
'server' => 'mail.postale.io',
'type' => 'imap',
'tls' => true,
'port' => 993,
'name' => 'Postale',
'auth' => 'login',
'smtp' => array(
'server' => 'mail.postale.io',
'port' => 465,
'tls' => true
),
));

Nux_Quick_Services::add('mailbox', array(
'server' => 'imap.mailbox.org',
'type' => 'imap',
'tls' => true,
'port' => 993,
'name' => 'Mailbox',
'auth' => 'login',
'smtp' => array(
'server' => 'smtp.mailbox.org',
'port' => 465,
'tls' => true
),
));

0 comments on commit dca56f8

Please sign in to comment.