diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-07-27 14:57:26 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-07-27 20:10:00 -0600 |
| commit | 14c56a9dd2b67102ac4c6c5648e4afb53b144eaa (patch) | |
| tree | cf9dd2bb0f583baf5233253e2505cde183ce6110 /pkgs/postfix/default.nix | |
| parent | ecdd297868a6a7df5b61ae38bace9462961e5b4f (diff) | |
pkgs: patch postfix to implement CCERTS action in access tables
Diffstat (limited to 'pkgs/postfix/default.nix')
| -rw-r--r-- | pkgs/postfix/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/postfix/default.nix b/pkgs/postfix/default.nix new file mode 100644 index 0000000..39481e7 --- /dev/null +++ b/pkgs/postfix/default.nix @@ -0,0 +1,7 @@ +{ postfix }: +postfix.overrideAttrs { + # Nota: hay que cambiar prefix postfix/src/ -> src/ en el patch porque las release tarballs vienen asà + patches = (postfix.patches or [ ]) ++ [ + ./0001-smtpd-implement-CCERTS-action-for-access-5-tables.patch + ]; +} |
