> How do I get rid of the comments? grep '^[^#]' /etc/exim/exim4.conf
That makes it skip any line that starts with "#" and skip any line that doesn't have at least one character in it (i.e. skips blank lines). If you want to keep the blank lines: grep '^[^#]*$' /etc/exim/exim4.conf ...Todd -- The total budget at all receivers for solving senders' problems is $0. If you want them to accept your mail and manage it the way you want, send it the way the spec says to. --John Levine -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
