From 2f56e390f04fe6975b75e512c1436ef173e4aafe Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 7 Aug 2009 14:05:17 +0200 Subject: Introduce noplainemail option to hide email adresses from spambots Signed-off-by: Martin Szulecki --- ui-atom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui-atom.c') diff --git a/ui-atom.c b/ui-atom.c index e5c31d9..808b2d0 100644 --- a/ui-atom.c +++ b/ui-atom.c @@ -32,7 +32,7 @@ void add_entry(struct commit *commit, char *host) html_txt(info->author); html("\n"); } - if (info->author_email) { + if (info->author_email && !ctx.cfg.noplainemail) { mail = xstrdup(info->author_email); t = strchr(mail, '<'); if (t) -- cgit v1.2.3-59-g8ed1b