Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @thunderbird/autoconfig-reviewers
5 changes: 5 additions & 0 deletions .github/workflows/validate-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ jobs:
run: |
pip install lxml
python tools/validate.py ispdb/*

- name: Run convert.py
run: |
mkdir tmp/
python tools/convert.py -a -d tmp/ ispdb/*
44 changes: 44 additions & 0 deletions ispdb/nili.ca.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="nili.ca">
<domain>nili.ca</domain>
<displayName>Nili</displayName>
<displayNameShort>Nili</displayNameShort>

<incomingServer type="imap">
<hostname>email.nili.email</hostname>
<port>993</port>
<socketType>SSL</socketType>
<username>%EMAILADDRESS%</username>
<authentication>password-cleartext</authentication>
</incomingServer>

<incomingServer type="pop3">
<hostname>email.nili.email</hostname>
<port>995</port>
<socketType>SSL</socketType>
<username>%EMAILADDRESS%</username>
<authentication>password-cleartext</authentication>
</incomingServer>

<outgoingServer type="smtp">
<hostname>email.nili.email</hostname>
<port>465</port>
<socketType>SSL</socketType>
<username>%EMAILADDRESS%</username>
<authentication>password-cleartext</authentication>
</outgoingServer>

<outgoingServer type="smtp">
<hostname>email.nili.email</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<username>%EMAILADDRESS%</username>
<authentication>password-cleartext</authentication>
</outgoingServer>

<documentation url="https://nili.ca/knowledge-base/how-to-connect-email-clients-to-servers/">
<descr lang="en">POP, IMAP, and SMTP settings for Nili</descr>
</documentation>
</emailProvider>
</clientConfig>
16 changes: 16 additions & 0 deletions ispdb/office365.com.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@
<leaveMessagesOnServer>true</leaveMessagesOnServer>
</pop3>
</incomingServer>
<incomingServer type="ews">
<username>%EMAILADDRESS</username>
<authentication>OAuth2</authentication>
<url>https://outlook.office365.com/ews/exchange.asmx</url>
</incomingServer>
<incomingServer type="owa">
<username>%EMAILADDRESS</username>
<authentication>OAuth2</authentication>
<url>https://outlook.office365.com/owa/</url>
</incomingServer>
<incomingServer type="graph">
<username>%EMAILADDRESS%</username>
<authentication>OAuth2</authentication>
<url>https://graph.microsoft.com/</url>
</incomingServer>
<!-- Backwards compatibility with single Exchange incomingServer element. -->
<incomingServer type="exchange">
<hostname>outlook.office365.com</hostname>
<port>443</port>
Expand Down
Loading