stalwartlabs / mail-send

E-mail delivery library for Rust with DKIM support
https://docs.rs/mail-send/
Apache License 2.0
206 stars 21 forks source link

MailSend violates the license of its dependency smtp-proto #26

Closed SvetlinZarev closed 9 months ago

SvetlinZarev commented 9 months ago

Mail-send is licensed under mit/apache, while it's dependency smtp-proto - under AGPL3.0.

AGPL requires all derived work to be licensed under AGPL. Thus mail_send must be AGPL3.0 too.

Violation of the license of its dependency, makes the mail_send crate unusable.

jdevries3133 commented 9 months ago

For anyone seeing this, I migrated to lettre, which does not use smtp-proto under the hood, and has an MIT license.

mdecimus commented 9 months ago

@SvetlinZarev thank you for pointing this out. smtp-proto has now been changed to a MIT/Apache license, make sure your project is linking version 0.1.3.

@jdevries3133 I hope that after this license change you can migrate back to mail-send!