diff options
| author | Robert Tari <robert@tari.in> | 2023-06-21 21:48:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-21 21:48:47 +0200 |
| commit | af15cbb00f190089638a22e0f5d2fee58325eff6 (patch) | |
| tree | d4b11a5c4aa98961908c239eab390fcb540ea03f | |
| parent | 8818fcf561875b2a9562feaa17195947349c0466 (diff) | |
| parent | da5577bbb2c5837ec4efe8341ea9aad12e804618 (diff) | |
| download | ayatana-webmail-af15cbb00f190089638a22e0f5d2fee58325eff6.tar.gz ayatana-webmail-af15cbb00f190089638a22e0f5d2fee58325eff6.tar.bz2 ayatana-webmail-af15cbb00f190089638a22e0f5d2fee58325eff6.zip | |
Merge pull request #33 from doronbehar/exec-on-receive/more-info
Pass host information when calling exec-on-receive
| -rwxr-xr-x | ayatanawebmail/application.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ayatanawebmail/application.py b/ayatanawebmail/application.py index eb9ad33..72bfd55 100755 --- a/ayatanawebmail/application.py +++ b/ayatanawebmail/application.py @@ -997,7 +997,7 @@ class AyatanaWebmail(object): try: - subprocess.call((self.strCommand, sender, ilabel)) + subprocess.call((self.strCommand, sender, ilabel, oConnection.strHost)) except OSError as e: |
