Explicity mention imap/smtp settings and include tutorial for sieve #32

Merged
evanc merged 1 commit from imap-and-tutorial-sieve into main 2025-01-11 18:26:45 +00:00
Showing only changes of commit c9093fdcf1 - Show all commits

View file

@ -23,21 +23,49 @@ This work is being done with Rust.
Use your Skynet ``username@skynet.ie`` and ``password`` to login. Use your Skynet ``username@skynet.ie`` and ``password`` to login.
### IMAP / SMTP settings
Use your full Skynet email ``username@skynet.ie`` and ``password``.
#### SMTP
Server: ``mail.skynet.ie``
Port: ``993``
Authentication Method: ``Normal Password``
Connection Security: ``SSL/TLS``
#### IMAP
Server: ``mail.skynet.ie``
Port: ``465``
Authentication Method: ``Normal Password``
Connection Security: ``SSL/TLS``
## Sieve Scripts ## Sieve Scripts
Sieve scripts allow you to sort and manage yer email in a programmatic way. Sieve scripts allow you to sort and manage yer email in a programmatic way.
Recommended tool: <https://github.com/thsmi/sieve> Recommended tool: <https://github.com/thsmi/sieve>
Small tutorial will follow later.
* Download and open the tool.
* Enter settings for skynet.
- Hostname: ``mail.skynet.ie``
- Port: ``4190``
- Username: ``username@skynet.ie``
* Hit Create.
* Hit Connect and enter your ``password``.
### ``.forwards`` replacement ### ``.forwards`` replacement
Since we no longer support ``.forwards`` this is the sieve script counterpart. Since we no longer support ``.forwards`` this is the sieve script counterpart.
It copies all incoming mail to the target address. It copies all incoming mail to the target address.
* Continuing from above
* Hit Create new script, enter a name and press edit.
* Enter code below. (You may also use the gui drag and drop builder to create the script)
```sieve ```sieve
require "copy"; require "copy";
redirect :copy "sending_mail_to@example.ie"; redirect :copy "sending_mail_to@example.ie";
``` ```
* Save the script.
* Go back to the home tab and press activate on your newly created script. This will enable the forwarding
### Committee/Admins ### Committee/Admins
There is an inbuilt sieve script that passes mail from committee/admin addresses into a folder in their Skynet inbox. There is an inbuilt sieve script that passes mail from committee/admin addresses into a folder in their Skynet inbox.