12

Need to set up service account on company printer, that sends print counters to copy company. So they can send us back the invoice.

I was told, that this could be handled by shared mailbox without any licence. But it seems to me, that shared mailbox crendentials can not auth with SMTP.

Do I need to buy licence? If so, which one?

johnymachine
  • 781
  • 2
  • 7
  • 28

1 Answers1

15

Office 365 Shared Mailboxes (user without Exhcange licence) do not have SMTP access to Exchange online, which is a bit different from behaviour you might expect when coming from on premise Exchange. They can connect using the Exchange protocol in outlook thou, but that is no good for various devices.

There are several options described in Office 365 documentations on how to connect various devices: https://learn.microsoft.com/cs-cz/Exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-microsoft-365-or-office-365

To put it simply:

  1. For devices that need to send only to internal mailboxes (for example printers and server alerts) I went with Option 2, which does not require licensing. You just setup spf records and allow your public ip address in Office365.

You can send to distribution list, which forwards to specific mailboxes outside your organization.

  1. If you need to send mail outside your organization (for example invoice notifications), you need licensed user, probably cheapest one is Exchange online plan 1.

One licensed user can operate multiple assigned shared mailboxes, if you don't mind exposing same credentials on different places.

johnymachine
  • 781
  • 2
  • 7
  • 28
  • 1
    Thanks! Was looking all over for this information. Wasn't sure why I wasn't able to authenticate. – Steve Bauman Feb 23 '17 at 20:53
  • If you want to send only in organization easiest by far is direct send without auth. You just have to add your public IP to SPF record fort mail to not end up as spam. – johnymachine Feb 23 '17 at 21:08
  • 2
    Not sure about the MS licensing on this, but worth considering the SMTP footnote on this answer: https://superuser.com/a/1099658/487407 – GMeister Jan 17 '19 at 20:14