List all alternatives for linux for gmail notifier ?
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
cgmail - A new shiny mail checker for the Gnome desktop
checkgmail - Alternative Gmail Notifier for Linux via Atom feeds
gmail-notify - A Gmail Notifier
kcheckgmail - A Gmail notifier-like notifier for KDE
mail-notification - mail notification in system tray
python-libgmail - Python bindings to access Gmail accounts
xfce4-mailwatch-plugin - mail watcher plugin for the Xfce4 panel
xlassie - Dockable mail notifier w/ message count & POP3/APOP/IMAP support
wmbiff - A dockable app that displays information about mailboxes
wmmail - A mail notification program designed for WindowMaker
kbiff - KDE mail notification utility
gnubiff - A mail notification program for GNOME (and others)
#!/usr/bin/perl
#
############################################################################
#
# Name: gmailpop.pl
# Author: Pete Prodoehl
# Author-Email: pete@rasterweb.net
#
# $Id: gmailpop.pl,v 1.2 2005/01/16 20:50:11 pete Exp pete $
#
############################################################################
#
# http://gmail.google.com/support/bin/answer.py?answer=13287
# Incoming Mail (POP3) Server requires SSL
#
# In gmail, go into 'Mail Settings' and then 'Forwarding and POP'
# and under 'POP Download' set this setting:
# '2. When messages are accessed with POP'
# to 'archive Gmails's copy' that way after the scripts grabs the mail
# it'll be archived and it won't grab it next time...
#
############################################################################
############################################################################
# required modules
use Mail::POP3Client;
use IO::Socket::SSL;
# fill in your details here
$username = 'your_account@gmail.com'; # edit this
$password = 'secret_password'; # edit this
$mailhost = 'pop.gmail.com';
$port = '995';
$pop = new Mail::POP3Client( USER => $username,
PASSWORD => $password,
HOST => $mailhost,
PORT => $port,
USESSL => 'true',
DEBUG => 0,
);
# if no msgs just exit
if (($pop->Count()) < 1) {
print "No messages...\n";
exit;
}
# if msgs, tell how many
print $pop->Count() . " messages found!\n";
# loop over msgs
for($i = 1; $i <= $pop->Count(); $i++) {
print $pop->Head($i) . "\n";
print $pop->Body($i) . "\n";
print "\n";
}
# close connection
$pop->Close();
exit;
__END__
=head1 NAME
gmailpop.pl
=head1 DESCRIPTION
This script checks a gmail account using POP/SSL
=head1 AUTHOR
Pete Prodoehl E<lt>pete@rasterweb.netE<gt>
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation.
=cut
___________________________________________________________
Features:
- Bash checking of the gmail accounts - Use the gpg encryption Cool no? so that your email password isnt in clear anymore
- Check the processes, and let only one gmailbashchecker running
- Plays KDE sounds if an email has been received
- A file in /tmp/ is created as log and permits other users to see that email is received (this is very important for my box because I run mythtv and this pc is shared. Also the other users can use the crontab -e )
___________________________________________________________
A bug, is that when checking the emails.
Last edited by frenchn00b; 12-29-2008 at 04:04 PM..
Use the Pidgin instant messenger (http://pidgin.im) to configure your google talk account and logon as invisible if you wish; enable email notifications.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.