I have a PHP/MySQL web application that runs on a Linux server running postfix. I use a phpmailer script which I can configure to relay via IMAP/SSL for accounts with valid login credentials. I have an email account that runs on Exchange server which will not accept normal IMAP connections and requires Outlook or a mail client with the option to configure an Exchange account. I believe it authenticates with RPC over HTTPS. Is there any way to automate relay of email traffic via this account (for which I have valid credentials) via a Linux server?
Asked
Active
Viewed 789 times
2 Answers
0
Are you sure rpc over https is the only literal option? Any chance they have EWS or OWA available? I'm not aware of an RPC-based linux client; even the Mac Outlook client from Microsoft uses EWS, not RPC over https.
Mary
- 565
- 5
- 10
0
The answer to this was using EWS. There is an application called DavMail which functions as an Exchange gateway. This was simple to set up, runs as a service and solved my problem. This tutorial was very helpful.
RikT
- 1