einval

joined 1 year ago
[–] einval@lemmy.einval.net 1 points 1 year ago

Aliens: Special Edition

[–] einval@lemmy.einval.net 41 points 1 year ago (2 children)

RIF. Ugh, what a shame.

[–] einval@lemmy.einval.net 1 points 1 year ago

"Make it go, helmsman." 👉

[–] einval@lemmy.einval.net 2 points 1 year ago

Occasionally I'll get hit with a few unwieldy conflicts. Usually it's one or two lines, and always a whitespace issue because someone's code style just has to be different.

[–] einval@lemmy.einval.net 1 points 1 year ago

Have you configured OpenDKIM correctly? This tutorial might give you an idea or two. Gmail won't relay mail unless its signed by your domain.

[–] einval@lemmy.einval.net 3 points 1 year ago

Yes. You can use an existing SMTP server (gmail [legacy app mode], yahoo, microsoft, etc). One thing to keep in mind -- if you decide to go that route don't use your personal account because the address might be exposed in the mail headers. Create a dedicated account and use that instead.

lemmy.hjson

email: {
    smtp_server: "smtp.example.tld:[port]" # port 25, port 587, etc
    smtp_login: "username"
    smtp_password: "password"
    smtp_from_address: "noreply@example.tld" # or account_just_created@example.tld
    tls_type: "tls" # or starttls
}