Files
nixpkgs/pkgs/by-name/za/zammad/fix-sendmail-location.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
519 B
Diff
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
diff --git a/app/models/channel/driver/sendmail.rb b/app/models/channel/driver/sendmail.rb
index 475636c013..7f3149c331 100644
--- a/app/models/channel/driver/sendmail.rb
+++ b/app/models/channel/driver/sendmail.rb
@@ -30,7 +30,7 @@ class Channel::Driver::Sendmail < Channel::Driver::BaseEmailOutbound
# test
super(attr, notification, :test)
else
- super(attr, notification, :sendmail)
+ super(attr, notification, :sendmail, { location: '/run/wrappers/bin/sendmail' })
end
end
end