我嘗試在Subversion 1.6.12服務器上設置提交後掛接以在提交時發送通知郵件。SVN hook mailer.py配置
我已經在基本配置中使用了腳本mailer.py(由utilversion文件夾中的subversion團隊提供)(只需在每次提交之後發送一封電子郵件),它運行良好。
但現在,我只想在/ tags /文件夾中提交時才發送郵件。
這是我的標準mailer.conf(行之有效):
[general]
smtp_hostname = xxx.xxx.xxx.xxx
[defaults]
from_addr = [email protected]
to_addr = [email protected]
而這正是我試圖在/標籤/只配置一個郵件:
[general]
smtp_hostname = xxx.xxx.xxx.xxx
[defaults]
from_addr = [email protected]
to_addr = [email protected]
for_paths = .*/tags/.*
但看起來像我誤解了配置,因爲它不起作用:我收到郵件的所有提交(標籤與否)
任何想法? 謝謝。
commit-email.pl已經過時了http://svn.apache.org/repos/asf/subversion/trunk/tools/hook -scripts/mailer/ –
正如我在我的文章中所說,我知道commit-email.pl已被棄用mailer.py。我最初的問題是關於mailer.py,但我沒有找到辦法使它工作... –