aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
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) {