/usr/share/evolution/signature.py is in evolution-common 3.2.3-0ubuntu6.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/usr/bin/python
from gettext import gettext as _
import gettext
gettext.bindtextdomain("evolution-2.30","/usr/share/locale")
gettext.textdomain("evolution-2.30")
print _("Sent from Ubuntu")
|