diff options
author | lpsolit%gmail.com <> | 2006-12-09 20:58:14 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-09 20:58:14 +0100 |
commit | 146561b4dece24b5a6857a00b7074acc23f11f1f (patch) | |
tree | f8b356a734f27c591733b454753ce4576b6d852b /Bugzilla | |
parent | accd734fd5a4ac2d242997c110c1924844219ba7 (diff) | |
download | bugzilla-146561b4dece24b5a6857a00b7074acc23f11f1f.tar.gz bugzilla-146561b4dece24b5a6857a00b7074acc23f11f1f.tar.xz |
Bug 362865: email_in.pl permissions not good after running checksetup.pl - Patch by Bill Barry <after.fallout@gmail.com> r=mkanat a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 3a0797754..c13df2893 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -13,6 +13,7 @@ # The Original Code is the Bugzilla Bug Tracking System. # # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org> +# Bill Barry <after.fallout@gmail.com> package Bugzilla::Install::Filesystem; @@ -108,7 +109,7 @@ sub FILESYSTEM { 'testserver.pl' => { perms => $ws_executable }, 'whine.pl' => { perms => $ws_executable }, 'customfield.pl' => { perms => $owner_executable }, - 'email_in.pl' => { perms => $owner_executable }, + 'email_in.pl' => { perms => $ws_executable }, 'docs/makedocs.pl' => { perms => $owner_executable }, 'docs/rel_notes.txt' => { perms => $ws_readable }, |