Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (100 - 102 of 332)

Ticket Resolution Summary Owner Reporter
#246 wontfix permission denied bas anonymous
Description

[root@leblanc1 email2trac-2.1.0]# ./configure --prefix=/usr/local --exec_prefix=$prefix/bin --sysconfdir=$prefix/etc --with-mta_user=nobody

--with-trac_user=www-data checking for a Python interpreter with version >= 2.4... python checking for python... /usr/bin/python checking for python version... 2.6 checking for python platform... linux2 checking for python script directory... ${prefix}/lib/python2.6/site-packages checking for python extension module directory... ${exec_prefix}/lib64/python2.6/site-packages checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking whether gcc needs -traditional... no configure: creating ./config.status config.status: creating Makefile config.status: creating email2trac.py config.status: creating delete_spam.py [root@leblanc1 email2trac-2.1.0]# make gcc -DMTA_USER=\"nobody\" -DTRAC_USER=\"www-data\" -DTRAC_SCRIPT_NAME=\"email2trac\" -DTRAC_SCRIPT_PATH=\"/bin/bin\" -DDEBUG=0 -o run_email2trac

run_email2trac.c [root@leblanc1 email2trac-2.1.0]# make install if [ ! -f etc/email2trac.conf ] ; \

then \

./install-sh -c -m 644 -o root email2trac.conf etc/email2trac.conf ;\

fi

./install-sh -d /bin/bin for script in delete_spam.py email2trac.py ; \

do \

name=basename $script '.py' ;\ ./install-sh -m 755 -o root $script /bin/bin/$name ;\

done

./install-sh -m 4111 -o root run_email2trac /bin/bin

but when trying to send mail , i am getting permission denied error in maillog as Jun 12 23:43:25 leblanc1 local[13255]: fatal: execvp /usr/local/bin/run_email2trac: Permission denied Jun 12 23:43:25 leblanc1 postfix/local[13248]: 33C7D2423C7: to=<leblanc-prototype@…>, relay=local, delay=0.01, delays=0/0/0/0, dsn=4.3.0, status=deferred (temporary failure. Command output: local: fatal: execvp /usr/local/bin/run_email2trac: Permission denied )

#245 fixed Little Syntax Problem bas dirk@…
Description

https://subtrac.sara.nl/oss/email2trac/wiki/Email2tracMta#Postfix

The pipe-symbol has to go inside the quotes.

tracproj: "|/usr/bin/run_email2trac [--project=<name>] [--ticket_prefix=<name>]"
#244 fixed SpamFilter is disabled/undef, but external mails fail to get through bas birgit-nietsch@…
Description

I have set up and tested email2trac and came across this problem: Mails from inside our network are nicely being processed into tickets, but mails from external mail servers will bounce:

<my-example@my.example.com>: Command died with status 1:
    "/usr/local/bin/run_email2trac --project=example --ticket_prefix=XXX". Command
    output: -Metadata-Version: 1.0 -Name: TracSpamFilter -Version: 0.4.6
    -Summary: Plugin for spam filtering -Home-page:
    http://trac.edgewall.org/wiki/SpamFilter -Author: Edgewall Software
    -Author-email: info@edgewall.com -License: BSD -Download-URL:
    http://trac.edgewall.org/wiki/SpamFilter -Description: UNKNOWN -Keywords:
    trac plugin -Platform: UNKNOWN -Classifier: Framework :: Trac -Classifier:
    License :: OSI Approved :: BSD License saving email to
    /tmp/tmpO0gAmo.email2trac writing body to /tmp/tmpnNgKeZ.email2trac

This always happens, no matter what I do with any spam filter options. Even if any spam filters are switched off/undefined, external mails will still be bounced.

Here is my email2trac.conf:

[DEFAULT]
parentdir: /srv/trac/projects
debug: 0
umask: 022
disabled_spam_level: 5
disabled_spam_header: X-Spam-Score
reply_all : 0
mailto_link: 0
umask: 022
email_header: 0
trac_version: 0.12.2
enable_syslog : 1
alternate_notify_template :
alternate_notify_template_update :
disabled_drop_spam : 0
verbatim_format: 1
strip_signature: 0
email_quote: >
strip_quotes: 0
ignore_trac_user_settings: 0
disabled_black_list: MAILER-DAEMON@
drop_alternative_html_version: 1
ticket_permission_system: trac
html2text_cmd: /usr/bin/links -dump

[example]
project: /srv/trac/projects/example
ticket_permission_system: update_restricted_to_participants
disabled_drop_spam : 0
disabled_spam_level: 5

I'm using trac 0.12.2 on OpenSUSE 11.4 and I've built email2trac with: ./configure --sysconfdir=/etc --with-trac_user=wwwrun --enable-python --with-mta-user=nobody

Note: See TracQuery for help on using queries.