c2a5073339
This adds a little tool that can be used to relay mail to Gmail (and other SMTP servers). It is intended to be used by Gerrit, which is incompatible with Gmail's SMTP servers. Configuration has been tested by performing a few sends through the tvlbot@tazj.in account. Note that this is using the standard Gmail SMTP server. Using the smtp-relay server relies on IP whitelisting, but camden.tazj.in has a larger number of IPv6 addresses than can be whitelisted (the maximum is 65k). This means that we are limited to 2000 mails per recipient per day, which should be fine. Change-Id: Ie43564d753030f5c800a9cdb4ae98292877d80dc Reviewed-on: https://cl.tvl.fyi/c/depot/+/101 Reviewed-by: edef <edef@edef.eu>
20 lines
557 B
Nix
20 lines
557 B
Nix
# A simple SMTP relay without the kitchen sink.
|
|
{ pkgs, lib, ... }:
|
|
|
|
pkgs.buildGoModule {
|
|
name = "smtprelay";
|
|
vendorSha256 = "0kv9cv2jca2r90qsf40qmqpw84kgxvbxlf39bfw8rvs2lnmqc2dg";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "decke";
|
|
repo = "smtprelay";
|
|
rev = "ed1c3a98889e752291aaca6c64149e48452d0583";
|
|
sha256 = "16q2d2ja2cipjvsnfxmdzixkg85sh15rh9r95w6bw2r1gjqr65hr";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple Golang SMTP relay/proxy server";
|
|
homepage = https://github.com/decke/smtprelay;
|
|
license = licenses.mit;
|
|
};
|
|
}
|