aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-12-11 03:30:24 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-12-11 03:30:24 +0800
commit4996c3207568837e3d56fab16fb29719d3542d85 (patch)
tree5256742bb988b1800baf43d128ebb0c978f1b211 /composer/e-msg-composer.c
parent68f8ea5429fed536060ccfe0ccba459b5bce709c (diff)
downloadgsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar.gz
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar.bz2
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar.lz
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar.xz
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.tar.zst
gsoc2013-evolution-4996c3207568837e3d56fab16fb29719d3542d85.zip
Only execute an executable sig file if a magic environment variable is
2001-12-10 Jon Trowbridge <trow@ximian.com> * e-msg-composer.c (get_file_content): Only execute an executable sig file if a magic environment variable is set. svn path=/trunk/; revision=14962
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r--composer/e-msg-composer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index b52295314c..d9df329775 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -727,7 +727,8 @@ get_file_content (const char *file_name, gboolean convert, guint flags)
if (stat (file_name, &statbuf) == -1)
return g_strdup ("");
- if (statbuf.st_mode & S_IXUSR) {
+ if ((statbuf.st_mode & S_IXUSR)
+ && getenv ("EVOLUTION_PLEASE_EXECUTE_MY_SIGNATURE_FILE")) {
raw = executed_file_output (file_name);
if (raw == NULL) {