diff options
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 27960e3c..172abc99 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -118,8 +118,13 @@ int main (int argc, char **argv) setvbuf(stdout, NULL, _IOLBF, POPBUFSIZE); if (versioninfo) + { printf("This is fetchmail release %s\n", RELEASE_ID); + /* this is an attempt to help remote debugging */ + system("uname -a"); + } + /* avoid parsing the config file if all we're doing is killing a daemon */ if (!quitmode) implicitmode = load_params(argc, argv, optind); |