In order to get mails instantly you need to modify gdeliveryd:
--------------------------Part 1:
FW/wnet/gdeliveryd/Mailbox.h
change into:
--------------------------Part 2:
FW/wnet/gdeliveryd/Mailbox.cpp
must change content within:
comment what's within the { } using // at the begining of each lines and add:
change it into:
->The images above shows you how it should look like when you edit using notepad+
->As you can see we comment the pieces of codes that we don't need and add whatever code that's required.
Just compile the binary and enjoy!
--------------------------Part 1:
FW/wnet/gdeliveryd/Mailbox.h
Code:
#define MAIL_UNREAD_DELETE 2592000 // 30 days
#define MAIL_READ_DELETE 259200 // 3 days
#define MAIL_ONTHEWAY_TIME 3600 // 3600 seconds
Code:
#define MAIL_UNREAD_DELETE 2592000 // 30 days
#define MAIL_READ_DELETE 259200 // 3 days
#define MAIL_ONTHEWAY_TIME 0 // 0 seconds
FW/wnet/gdeliveryd/Mailbox.cpp
must change content within:
Code:
int MailBox::DelayPolicy( const GMailHeader& mail,time_t now )
{ }
Code:
return 0;
To view the content, you need to sign in or register
change it into:
To view the content, you need to sign in or register
->The images above shows you how it should look like when you edit using notepad+
->As you can see we comment the pieces of codes that we don't need and add whatever code that's required.
Just compile the binary and enjoy!
Last edited: