I use Mozilla's Mail program and I modified just the end of the signature script recently discussed here on SLE that Ralph got working on Kmail. I'm wondering if it will work with Mozilla mail. I saved it as .signature in my home directory, then did a 'chmod u+x .signature' to make it executable and then told mozilla where to find my signature file and guess what? It doesn't work. E-mails come back with the exact text of the script, not the output of the script, as I'll illustrate below. Any thoughts on this? Note: The line below beginning $disp is all one line but gets truncated by my mail program (mozilla). -- #!/usr/bin/perl # get current kernel version $version = `uname -r`; # get current uptime @uptime = split /\s+/, qx(uptime); ($hours, $minutes) = split /[:,]/, $uptime[5]; $disp = "Current Linux uptime: " . $uptime[3] . " days " . $hours . " hours " . $minutes . " minutes."; # version string has built-in newline. print "\tYours,\n\tBrian.\nI proudly use SuSE Gnu/Linux 8.0 Professional. \nKernel version $version$disp\n"; exit(0);