mrpostman-developers Mailing List for MrPostman (Page 9)
Brought to you by:
chris_humphreys,
mrbook
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(65) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(50) |
Feb
(110) |
Mar
(91) |
Apr
(81) |
May
(91) |
Jun
(19) |
Jul
(2) |
Aug
(14) |
Sep
(46) |
Oct
(10) |
Nov
(8) |
Dec
(17) |
| 2004 |
Jan
(7) |
Feb
(25) |
Mar
(2) |
Apr
(3) |
May
(2) |
Jun
(12) |
Jul
(10) |
Aug
(8) |
Sep
(1) |
Oct
(19) |
Nov
(16) |
Dec
(6) |
| 2005 |
Jan
(17) |
Feb
(4) |
Mar
(10) |
Apr
(1) |
May
(25) |
Jun
(4) |
Jul
(6) |
Aug
(7) |
Sep
(6) |
Oct
(3) |
Nov
(7) |
Dec
(4) |
| 2006 |
Jan
(5) |
Feb
(7) |
Mar
(4) |
Apr
(10) |
May
(5) |
Jun
(3) |
Jul
(2) |
Aug
(7) |
Sep
(4) |
Oct
(6) |
Nov
(4) |
Dec
(7) |
| 2007 |
Jan
(8) |
Feb
(4) |
Mar
|
Apr
(4) |
May
(6) |
Jun
(6) |
Jul
(3) |
Aug
(1) |
Sep
(1) |
Oct
(4) |
Nov
(2) |
Dec
(5) |
| 2008 |
Jan
(2) |
Feb
|
Mar
(8) |
Apr
|
May
(2) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(2) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
| 2012 |
Jan
|
Feb
(8) |
Mar
(5) |
Apr
(5) |
May
(3) |
Jun
(5) |
Jul
(10) |
Aug
(5) |
Sep
(6) |
Oct
(2) |
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(6) |
May
(10) |
Jun
(7) |
Jul
(7) |
Aug
(3) |
Sep
(3) |
Oct
(2) |
Nov
(1) |
Dec
(4) |
| 2014 |
Jan
(5) |
Feb
(9) |
Mar
(9) |
Apr
(7) |
May
(6) |
Jun
(3) |
Jul
(7) |
Aug
(11) |
Sep
(9) |
Oct
(14) |
Nov
(15) |
Dec
(17) |
| 2015 |
Jan
(11) |
Feb
(9) |
Mar
(13) |
Apr
(11) |
May
(22) |
Jun
(15) |
Jul
(12) |
Aug
(5) |
Sep
(6) |
Oct
(11) |
Nov
(13) |
Dec
(2) |
| 2016 |
Jan
(7) |
Feb
(4) |
Mar
(9) |
Apr
(6) |
May
(1) |
Jun
|
Jul
(2) |
Aug
(3) |
Sep
(3) |
Oct
(3) |
Nov
(2) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(15) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2023 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Luca C. <lu....@gm...> - 2006-02-10 09:58:46
|
Hi,
I've the following error when try to delete a mail where the subject
contains the char "[" or "]".
10-feb-2006 10.41.02 org.mrbook.mrpostman.generic.GenericMailSessionquitSes=
sion
GRAVE: ./outlook2003.script: Error deleting message(s): Script
'./outlook2003.script', line 177: Parameter mismatch: post(string url [,
Map<string:string> parameters [, Map<string:string> headers [, encoding]]])
I've changed in the outlook2003.script the "delete" function delete for
escape these chars:
sub delete(msgs)
local(msg, status, page)
foreach(msgs, msg)
status,page =3D post(msg.id, map("MsgID", "/" &
replaceall(replaceall(replaceall(msg.id,"\?.*",""), "\\[", "%5B"), "\\]",
"%5D"), "Cmd", "delete"))
end
return true
end
but I've the same error.
I've also enabled the debug logging but there aren't useful info to fix the
problem, see below.
Have you any suggest?
Thanks in advance,
Luca
10-feb-2006 10.49.08
org.mrbook.mrpostman.generic.GenericMailSession::quitSession(1.45)-INFO:
./outlook2003.script: Deleting 1 messages...
10-feb-2006 10.49.08
org.mrbook.mrpostman.generic.GenericParser::callProcedure(1.24)-FINEST:
./outlook2003.script (172): msgs =3D [ [ "size" =3D> [ "value" =3D> "1", "u=
nit" =3D>
"KB" ], "id" =3D> "Posta%20in%20arrivo/[test].EML?Cmd=3Dopen" ] ]
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINER: ./outlook2003.script (173): Parsing 'local(msg, status, page)=
'
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINER: ./outlook2003.script (174): Parsing 'foreach(msgs, msg)'
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINEST: ./outlook2003.script (174): msg =3D [ "size" =3D> [ "value" =
=3D>
"1", "unit" =3D> "KB" ], "id" =3D> "Posta%20in%20arrivo/[test].EML?Cmd=3Dop=
en" ]
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINER: ./outlook2003.script (175): Parsing 'status,page =3D post(msg=
.id,
map("MsgID", "/" & replaceall(replaceall(replaceall(msg.id,"\?.*",""),
"\\[", "%5B"), "\\]", "%5D"), "Cmd", "delete"))'
10-feb-2006 10.49.08
org.mrbook.mrpostman.generic.GenericMailSession::quitSession(1.45)-SEVERE:
./outlook2003.script: Error deleting message(s): Script
'./outlook2003.script', line 176: Parameter mismatch: post(string url [,
Map<string:string> parameters [, Map<string:string> headers [, encoding]]])
10-feb-2006 10.49.08
org.mrbook.mrpostman.generic.GenericMailSession::quitSession(1.45)-INFO:
./outlook2003.script: Logging out...
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINER: ./outlook2003.script (181): Parsing 'get("?Cmd=3Dlogoff")'
10-feb-2006 10.49.08 org.mrbook.mrpostman.generic.GenericParser::executeLin=
e
(1.24)-FINEST: ./outlook2003.script (181): Calling get({ "?Cmd=3Dlogoff" })
|
|
From: <ih...@sr...> - 2006-01-17 19:25:21
|
<HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"><BASE </HEAD> <BODY bgColor=#ffffff> <BR> <DIV><A href="mailto:fre...@ho...?subject=Please%20Run%20the%20Free%20Website%20Analysis%20for%20my%20website%20and%20send%20me%20Information%20on%20your%20Company.&body=I would like to learn more about your Search Engine Optimization services. Below is my name, website address, phone number and three keywords that we would like to be listed at the top of the major engines for."><IMG height=277 src="http://www.angelfire.com/planet/bx136/jl177.gif" width=500 border=0 NOSEND="1"></A> <A href="mailto:fre...@ho...?subject=Please Run the Free Website Analysis for my website and send me Information on your Company.&body=I would like to learn more about your Search Engine Optimization services. Below is my name, website address, phone number and three keywords that we would like to be listed at the top of the major engines for."></A></DIV> <P align=left><FONT face="Arial, Helvetica, sans-serif" color=#003399 size=2>You are receiving this message as an opt-in subscriber to <BR>srvehst.com or one of our marketing partners. </FONT></P> <P align=left><FONT face="Arial, Helvetica, sans-serif" color=#003399 size=2>If you no longer wish to receive further offers, please send an email with discontinue to: <A href="mailto:su...@sr...">su...@sr...</A> </FONT></P> <P align=left><FONT face="Arial, Helvetica, sans-serif" color=#003399 size=2>Srvehst <BR>27 Russel Ave <BR>Edgewater, NJ 07020 </FONT></P></BODY></HTML> |
|
From: Gerard E. <ge...@wh...> - 2006-01-16 23:26:18
|
|
From: <jnt...@sr...> - 2006-01-10 20:41:39
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<style>
<!--
bodyText {
FONT-WEIGHT: normal; FONT-SIZE: 9pt; COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
-->
</style>
</head>
<body>
<table cellSpacing="0" cellPadding="0" width="700" align="center" border="0">
<tr>
<td>
<img src="http://www.freewebanalysis.com/images/header/header.gif" useMap="#Map" border="0" width="700" height="67"><map name="Map"><area shape="RECT" coords="615,14,674,32" href="mailto:in...@fr..."><area shape="RECT" coords="-8,3,54,66" href="http://www.freewebanalysis.com"></map></td>
</tr>
<tr vAlign="top" align="middle">
<td height="310">
<div dir="ltr" align="left">
<span class="531511317-10012006"><font size="2">
<p align="center"><span class="bodyText"><b>Watch Your Internet Business
Grow!<br>
FREE Website Analysis & Ranking Report of Your Website </b></span></p>
<p align="center"><span class="bodyText">Top search engine placement is a
vital key to a company's success these days. We partner with some of the
biggest search engine marketing companies to help you find the right one
to optimize your website and improve it's top search engine positions.</span></p>
<p align="center"><span class="bodyText">When your company website is
ranked highly in the major search engines, your virtual storefront becomes
prime business property and you are making sales 24/7. </span></p>
<p align="center"><span class="bodyText">At no cost to you, our
technicians will run a free ranking report showing you exactly where your
website currently stands in all the major search engines. Then we will
e-mail you our analysis along with a recommendation of how we can increase
your ranking. and improve your traffic! </span></p>
</font></span>
<p align="center"><b><font face="Arial" color="#000080">For a <u>FREE</u>
Analysis & <u>FREE</u> Ranking Report of Your Website, </font></b></p>
<p align="left"><b><font face="Arial" color="#000080">
<a href="http://www.freewebanalysis.com/">Please Click Here</a> </font></b></p>
<p align="center"> </div>
</td>
</tr>
<tr>
<td>
<img src="http://www.freewebanalysis.com/images/bl_ln.gif" width="700" height="1"></td>
</tr>
<tr vAlign="center" align="middle">
<td height="30"><font face="Arial, Helvetica, sans-serif" size="1">© 2006
Free Web Analysis</font></td>
</tr>
<tr vAlign="center" align="middle">
<td height="30"> </td>
</tr>
<tr vAlign="center" align="middle">
<td height="30">
<p align="left"><font face="Arial" color="#000080" size="1">You are
receiving this message as an opt-in subscriber to <br>
srvehst.com or one of our marketing partners.<br>
<br>
If you no longer wish to receive further offers, please send an email with
discontinue to: <a href="mailto:su...@sr...?subject=Discontinue">
su...@sr... </a><br>
<br>
Srvehst<br>
27 Russel Ave<br>
Edgewater, NJ 07020</font></td>
</tr>
</table>
</body>
</html>
|
|
From: Siafu K. <sia...@ju...> - 2006-01-03 16:51:35
|
I posted an updated Juno/Netzero script to the patches area. The new version updates the quota warning to support GB mailboxes (previously only supported MB mailboxes) and fixed Junk Mail messages to get downloaded properly again. |
|
From: <rou...@sr...> - 2005-12-21 11:51:21
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> </style></head> <body> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=utf-8"> </BODY></HTML> <p> <BR></p> </div><HTML><HEAD> </HEAD> <BODY> <P><A href="mailto:sup...@ho...?subject=Contact Info&body= Please type below your name, website address, phone number (Required so that we may call you) and best time to reach you. We will contact you shortly."> <IMG height=519 src="http://www.angelfire.com/planet/bx136/op139.gif" width=555 border="0"></A></P> <P><U></U> </P> <p align="left"><font face="Arial" color="#000080" size="2">You are receiving this message as an opt-in subscriber to <br> srvehst.com or one of our marketing partners.</font></p> <p align="left"><font face="Arial" color="#000080" size="2">If you no longer wish to receive further offers, please send an email with discontinue to: <a href="mailto:su...@sr...?subject=Discontinue">su...@sr... </a> <br> <br> <br> Srvehst.com<br> 27 Russel Ave<br> Edgewater, NJ 07020</font></p> <p align="left"> </p> <P> </P></BODY></HTML> |
|
From: Chris G. <ga...@em...> - 2005-12-15 10:07:05
|
Hi, I've found the mail.com script fails to send mail because the send link=20 is never found. The following change fixed it for me. Change line 136 from: found,sendlink =3D=20 match(page,"onclick=3D\"document.location.href=3D'([^']*compose=3D1)'\"") to: found,sendlink =3D=20 match(page,"onclick=3D\"document.location.href=3D'([^']*compose=3D1)';\"") (note the semicolon). Otherwise, fantastic program! thanks a lot, Chris (Auckland, New Zealand) --=20 ___________________________________________________ Play 100s of games for FREE! http://games.mail.com/ |
|
From: Siafu K. <sia...@ju...> - 2005-12-02 13:19:44
|
I updated the Juno/Netzero script and added it to the patches area. This reenables quota warnings for Netzero and addes a new option to always disable headers when logging off. |
|
From: Sales <sa...@pl...> - 2005-12-02 09:10:10
|
This email has been disabled temporarily. Please insert a "3" between the sales and the @ sign and try again, as sales3 at plbm dot com. Thank you! Kurt Dekker PLBM Games |
|
From: Lei W. <la...@ho...> - 2005-11-30 19:46:52
|
<html><div style='background-color:'><P>fieldMatcher = selectPattern.matcher(html);<BR>while (fieldMatcher.find()) {<BR> String tag = fieldMatcher.group(1);<BR> String options = fieldMatcher.group(2);<BR> Matcher attrMatcher = namePattern.matcher(tag);<BR> if (attrMatcher.find()) {<BR>- String name = attrMatcher.group(1);<BR>+ String name = removeDelimiters(attrMatcher.group(1));<BR> Matcher optionMatcher = optionPattern.matcher(options);<BR> while (optionMatcher.find()) {<BR> tag = optionMatcher.group(1);<BR> String value =
optionMatcher.group(2);<BR> attrMatcher = valuePattern.matcher(tag);<BR> if (attrMatcher.find()) value = removeDelimiters(attrMatcher.group(1));<BR> attrMatcher = selectedPattern.matcher(tag);<BR> if (attrMatcher.find()) {<BR> fields.put(getUniqueKey(fields,name),value);<BR> }<BR> }<BR> }<BR>}</P></div></html>
|
|
From: Hemanth K. E. <ehk...@ya...> - 2005-11-19 14:16:50
|
Hi, I have configured mrpostman to access my yahoo email using Outlook Express. I am on a very slow internet connection and usually it takes long time for mrpostman to get the list of emails and show up in Outlook. A lot of times the session times out (for outlook) and I get error messages in outlook. Is there any way that I could create a custom "mrpostman" for myself based on the source code that I have downloaded for mrpostman??? =20 It would be ideal if, I could have something wherein I could make mrpostman fetch only the headers, content of the emails and when explicitly asked for, fetch the attachments of the emails. =20 I dont know if these questions are a bit naive, but once we start communicating , I guess I should be able to make my self clear. Thanks in advance for the expected help, P.S: After receiving Yahoo emails, I have configured Hotmail using mrpostman, and it fetched the emails in no time. The time taken to fetch 8 yahoo emails was far more than the time taken to fetch about 23 hotmail emails.=20 There is a distinguished difference in the subroutines to "recieve" emails in the scripts of Yahoo and Hotmail. Can you help me out in creating a script for yahoo which does the same work as the script of Hotmail in the same amount of time? =20 Regards, Hemanth ***************Yahoo Logs******************* >=20 >=20 > = org.mrbook.mrpostman.pop.PopServer,"PopServer","isSocketAllowed","9:59:24= > AM","INFO","/127.0.0.1 /127.0.0.1", > org.mrbook.mrpostman.pop.PopServer,"PopServer","run","9:59:24 > AM","INFO","Connection accepted for IP /127.0.0.1", > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","9:59:= 24 > AM","INFO","'@yahoo.com': Module generic used for > this connection", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:26 > AM","INFO","./yahoo.script: Response 200 for request > 'GET http://mail.yahoo.com'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:28 > AM","INFO","./yahoo.script: Response 302 for request > 'GET > = http://login.yahoo.com/config/login?.intl=3Dus&passwd=3Dxxxxxx&login=3Dyy= yyyy&.us=3Dym&.tries=3D1&.src=3Dym', > location > 'http://us.f345.mail.yahoo.com/ym/login?.rand=3D2ureq64870lgf'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:29 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > http://us.f345.mail.yahoo.com/ym/login?.rand=3D2ureq64870lgf'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:33 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > http://us.f345.mail.yahoo.com/ym/ShowFolder?rb=3DInbox'", > = org.mrbook.mrpostman.generic.GenericParser,"GenericParser","logMessage","= 9:59:35 > AM","INFO","Checking Folder: Inbox (18) messages", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:36 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > http://us.f345.mail.yahoo.com/ym/ShowFolder?rb=3D%40B%40Bulk'", > = org.mrbook.mrpostman.generic.GenericParser,"GenericParser","logMessage","= 9:59:38 > AM","INFO","Checking Folder: @B@Bulk (0) messages", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","log= in","9:59:38 > AM","INFO","./yahoo.script: Found 18 messages.", > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","9:59:= 38 > AM","INFO","'@yahoo.com': Logged in ok", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:39 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?box=3DInbox&MsgId=3D6115_7104= 2_9228_1898_61674_0_38_87448_111607533&bodyPart=3DHEADER'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:39 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?box=3DInbox&MsgId=3D6115_7104= 2_9228_1898_61674_0_38_87448_111607533&bodyPart=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:41 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?MsgId=3D6115_71042_9228_1898_= 61674_0_38_87448_111607533&Idx=3D0&YY=3D38964&inc=3D25&order=3Ddown&sort=3D= date&pos=3D0&view=3D&head=3D&box=3DInbox#attachments'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:45 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?box=3DInbox&MsgId=3D6115_7104= 2_9228_1898_61674_0_38_87448_111607533&bodyPart=3D2&tnef=3D&YY=3D64768&or= der=3Ddown&sort=3Ddate&pos=3D0&VScan=3D1&Idx=3D0'", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","out= putLinesMessage","9:59:48 > AM","INFO","./yahoo.script: Message 1 has 1 > attachments (total 89088 bytes).", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:49 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter/?box=3DInbox&MsgId=3D6115_710= 42_9228_1898_61674_0_38_87448_111607533&bodyPart=3D2&filename=3D&tnef=3D&= download=3D1&YY=3D26327&order=3Ddown&sort=3Ddate&pos=3D0&Idx=3D0'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:52 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?box=3DInbox&MsgId=3D5937_6743= 6_8779_1620_1984_0_37_5668_1703250561&bodyPart=3DHEADER'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:53 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?box=3DInbox&MsgId=3D5937_6743= 6_8779_1620_1984_0_37_5668_1703250561&bodyPart=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:55 > AM","INFO","./yahoo.script: Response 200 for request > 'GET > = http://us.f345.mail.yahoo.com/ym/ShowLetter?MsgId=3D5937_67436_8779_1620_= 1984_0_37_5668_1703250561&Idx=3D1&YY=3D38964&inc=3D25&order=3Ddown&sort=3D= date&pos=3D0&view=3D&head=3D&box=3DInbox'", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","out= putLinesMessage","9:59:58 > AM","INFO","./yahoo.script: Message 2 has 0 > attachments (total 7168 bytes).", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","qui= tSession","9:59:58 > AM","INFO","./yahoo.script: Logging out...", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","9:59:59 > AM","INFO","./yahoo.script: Response 404 for request > 'GET http://us.f345.mail.yahoo.com/ym/'", > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","9:59:= 59 > AM","INFO","'@yahoo.com': Logged out ok", > org.mrbook.mrpostman.pop.PopServer,"PopServer","run","10:01:59 > AM","INFO","Someone connected", > = org.mrbook.mrpostman.pop.PopServer,"PopServer","isSocketAllowed","10:01:5= 9 > AM","INFO","/127.0.0.1 /127.0.0.1", >=20 >=20 >=20 >=20 >=20 >=20 >=20 >=20 >=20 >=20 >=20 > ***********************************Hotmail > Logs****************************************** >=20 >=20 > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","10:01= :59 > AM","INFO","'@hotmail.com': Module generic used for > this connection", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:00 > AM","INFO","./hotmail.script: Response 302 for > request 'GET http://www.hotmail.com', location > = 'http://loginnet.passport.com/login.srf?id=3D2&svc=3Dmail&cbid=3D24325&ms= ppjph=3D1&tw=3D0&fs=3D1&fsa=3D1&fsat=3D1296000&lc=3D1033&_lang=3DEN'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:01 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://loginnet.passport.com/login.srf?id=3D2&svc=3Dmail&cbid=3D24325&msp= pjph=3D1&tw=3D0&fs=3D1&fsa=3D1&fsat=3D1296000&lc=3D1033&_lang=3DEN'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","post","10:02:01= > AM","INFO","./hotmail.script: Response 200 for > request 'POST > http://login.passport.net/uilogin.srf?lc=3D1033&id=3D2'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","post","10:02:04= > AM","INFO","./hotmail.script: Response 200 for > request 'POST > = https://loginnet.passport.com/ppsecure/post.srf?id=3D2&svc=3Dmail&cbid=3D= 24325&msppjph=3D1&tw=3D0&fs=3D1&fsa=3D1&fsat=3D1296000&lc=3D1033&_lang=3D= EN&bk=3D1132374725'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:05 > AM","INFO","./hotmail.script: Response 302 for > request 'GET > = http://www.hotmail.msn.com/cgi-bin/sbox?t=3D7lcexdv6WD9osXxO3QM8ntkfmEQ6J= FI0mfRdBUMUYqzRWa95Z!xgse4LKFkKXZviDaSPI2ZUENAb0aH*PMP6s!PAt76jrDSC*LcefP= iNAnarUu2dHaE*79UQ$$&p=3D7iCB02XXJFrijeqiGL2IyFVVlAnQjlsBkEVgs4EGSJcAzpE0= x!hpPsTjYpyl34kqnzEemW9zX1b4W!ohFp!HMAtNFjwdTMlLiyJAEYnNEmcWmuXaJOt8NGMzO= lkh2bCDEvXFsOxBkl*tloB791Aln2*e6ZNe6XrNt!j4VX8cC7y13iSBm3pdoTaU3D*IjbXkYc= &lc=3D1033&id=3D2'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:05 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/hmhome?fti=3Dyes&curmbox=3D= 00000000%2d0000%2d0000%2d0000%2d000000000001&a=3D1737146e232ce33348d80eb7= 938bc02847014dc5a8032803d28c32a6938c2089'", > = org.mrbook.mrpostman.generic.GenericParser,"GenericParser","logMessage","= 10:02:06 > AM","WARNING","You have an old hotmail account. > Change folders to correct format (in inbox link > after 'curmbox=3D', e.g. > 00000000-0000-0000-0000-000000000001, ...). Only > retrieving mails from inbox now!", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:07 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/HoTMaiL?curmbox=3D00000000-= 0000-0000-0000-000000000001&a=3D1737146e232ce33348d80eb7938bc02847014dc5a= 8032803d28c32a6938c2089&fti=3Dyes'", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","log= in","10:02:08 > AM","INFO","./hotmail.script: Found 25 messages.", > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","10:02= :08 > AM","INFO","'@hotmail.com': Logged in ok", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:09 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DFC693B15-DC8A-= 4723-95F4-C4C5244F66AF&start=3D0&len=3D4452&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:10 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DFC693B15-DC8A-= 4723-95F4-C4C5244F66AF&start=3D0&len=3D4452&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:10 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D81DA9614-62D6-= 4150-AB07-F57896F5A98B&start=3D0&len=3D3398&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:12 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D81DA9614-62D6-= 4150-AB07-F57896F5A98B&start=3D0&len=3D3398&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:12 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D323943FE-245F-= 492C-8B27-9090D59C5197'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:15 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D323943FE-245F-= 492C-8B27-9090D59C5197&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:16 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DD48A9F20-7B42-= 40B2-940C-9548F545590F&start=3D0&len=3D10246&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:17 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DD48A9F20-7B42-= 40B2-940C-9548F545590F&start=3D0&len=3D10246&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:18 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D31B44CC6-12D7-= 4455-96E6-FE088B0CC553'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:19 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D31B44CC6-12D7-= 4455-96E6-FE088B0CC553&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:20 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D8A0F0E97-91E7-= 423E-9BBE-6B93DC963B8A&start=3D0&len=3D2725&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:21 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D8A0F0E97-91E7-= 423E-9BBE-6B93DC963B8A&start=3D0&len=3D2725&imgsafe=3Dn&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:22 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D582FAAF1-CE6F-= 4820-811F-C8BF191ADED5&start=3D0&len=3D6108&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:23 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D582FAAF1-CE6F-= 4820-811F-C8BF191ADED5&start=3D0&len=3D6108&imgsafe=3Dn&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:24 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D660CEB59-B134-= 4080-B9A1-4F9EC40A1F1B&start=3D0&len=3D2130&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:25 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D660CEB59-B134-= 4080-B9A1-4F9EC40A1F1B&start=3D0&len=3D2130&imgsafe=3Dn&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:25 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB2970686-B300-= 4FCB-8FB5-8DC18202832C&start=3D0&len=3D2018&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:26 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB2970686-B300-= 4FCB-8FB5-8DC18202832C&start=3D0&len=3D2018&imgsafe=3Dn&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:27 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DCC04240F-79AA-= 42FD-9CE0-442DDD1D63B3'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:29 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DCC04240F-79AA-= 42FD-9CE0-442DDD1D63B3&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:31 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D71AFC599-B1FF-= 4B71-9C71-D93E8265539C'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:32 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D71AFC599-B1FF-= 4B71-9C71-D93E8265539C&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:33 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D2E1FAAB9-4612-= 464D-A922-4DF835997F24&start=3D0&len=3D1734&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:34 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D2E1FAAB9-4612-= 464D-A922-4DF835997F24&start=3D0&len=3D1734&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:35 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB4A32ED7-0EB9-= 43D8-A1F1-3BB9CFA03C94'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:37 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB4A32ED7-0EB9-= 43D8-A1F1-3BB9CFA03C94&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:38 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D7754D1BB-D59A-= 4FCB-A4D0-02C3BE79EA45&start=3D0&len=3D64966&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:40 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D7754D1BB-D59A-= 4FCB-A4D0-02C3BE79EA45&start=3D0&len=3D64966&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:43 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D486657EB-23CB-= 4C00-9F70-C1EEC8560796&start=3D0&len=3D2437&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:44 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D486657EB-23CB-= 4C00-9F70-C1EEC8560796&start=3D0&len=3D2437&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:44 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D223EDCC6-50FD-= 4370-A1BA-2E3C048A11E4&start=3D0&len=3D7630&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:45 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D223EDCC6-50FD-= 4370-A1BA-2E3C048A11E4&start=3D0&len=3D7630&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:46 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D796E120D-BD48-= 4A6E-AAE1-B09798451787&start=3D0&len=3D3673&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:47 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D796E120D-BD48-= 4A6E-AAE1-B09798451787&start=3D0&len=3D3673&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:48 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DEF1ADC14-2FC7-= 4DF6-9DA4-36ABC4551B1B&start=3D0&len=3D65784&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:49 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DEF1ADC14-2FC7-= 4DF6-9DA4-36ABC4551B1B&start=3D0&len=3D65784&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:52 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D7DD3783C-30C0-= 47A2-99DB-97160815C3D8'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:54 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D7DD3783C-30C0-= 47A2-99DB-97160815C3D8&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:54 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D321F9587-4A91-= 40DD-B1E7-A74B6E2DF55A&start=3D0&len=3D9878&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:56 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D321F9587-4A91-= 40DD-B1E7-A74B6E2DF55A&start=3D0&len=3D9878&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:57 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DC033C7BF-4DA1-= 4D2C-AE1A-F06411BF0C39&start=3D0&len=3D2518&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:58 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DC033C7BF-4DA1-= 4D2C-AE1A-F06411BF0C39&start=3D0&len=3D2518&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:02:59 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D11FA9591-F729-= 4C82-8DAD-D67572EAAB1B'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:01 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D11FA9591-F729-= 4C82-8DAD-D67572EAAB1B&raw=3D1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:02 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D9DC9A9C7-2AFD-= 4E6C-B87B-EA8CF0F805C8&start=3D0&len=3D4050&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:03 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D9DC9A9C7-2AFD-= 4E6C-B87B-EA8CF0F805C8&start=3D0&len=3D4050&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:04 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D72314124-00E5-= 4593-8D2A-47F3E8D86D0B&start=3D0&len=3D7687&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:05 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3D72314124-00E5-= 4593-8D2A-47F3E8D86D0B&start=3D0&len=3D7687&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:06 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB4F0366A-6902-= 40E5-A14C-0EABABD7F6B8&start=3D0&len=3D4045&msgread=3D1&imgsafe=3Dn'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:07 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/getmsg?msg=3DB4F0366A-6902-= 40E5-A14C-0EABABD7F6B8&start=3D0&len=3D4045&msgread=3D1&imgsafe=3Dn&raw=3D= 1'", > = org.mrbook.mrpostman.generic.GenericMailSession,"GenericMailSession","qui= tSession","10:03:07 > AM","INFO","./hotmail.script: Logging out...", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:07 > AM","INFO","./hotmail.script: Response 302 for > request 'GET > = http://by105fd.bay105.hotmail.msn.com/cgi-bin/logout?curmbox=3D00000000%2= d0000%2d0000%2d0000%2d000000000001&a=3D1737146e232ce33348d80eb7938bc02847= 014dc5a8032803d28c32a6938c2089&t=3D1132374729&loru=3D&id=3D2&fs=3D1&cb=3D= _lang%3dEN%26country%3dUS&ct=3D1132374729', > location > = 'http://loginnet.passport.com/logout.srf?_lang=3DEN&lc=3D1033&id=3D2&ru=3D= http%3a%2f%2fsignout%2emsn%2ecom&dontall=3D'", > = org.mrbook.mrpostman.generic.GenericRobot,"GenericRobot","get","10:03:08 > AM","INFO","./hotmail.script: Response 200 for > request 'GET > = http://loginnet.passport.com/logout.srf?_lang=3DEN&lc=3D1033&id=3D2&ru=3D= http%3a%2f%2fsignout%2emsn%2ecom&dontall=3D'", > = org.mrbook.mrpostman.pop.PopConnection,"PopConnection","parseLine","10:03= :08 > AM","INFO","'@hotmail.com': Logged out ok", >=20 >=20 >=20 |
|
From: Kurt Go <ku...@gm...> - 2005-11-18 20:27:34
|
Martin, you are correct, but if it becomes a driving goal to provide support for this, and someone is willing to spend the time, the rhino (http://www.mozilla.org/rhino/) javascript engine could be made to work with mrpostman engine. The engine would have to expose form data (or whatever the sript was trying to access) as objects to the engine, and feed the script to rhino. Not to say it would be easy, but that's how I would support this type of password scheme... Kurt Martin Vlcek wrote: > It is not possible to call a javascript function from MrPostman, you > have to analyze the javascript code and in your webmail script get all > relevant data from the page/javascript and calculate the encoded > password yourself. > > > Subramanya H S wrote: > >> Thanks for replay >> >> but the script is encoding the password given to some format which is >> changing every time when you submit to the link. >> >> Please give the idea about how to call a java script functions which >> is present in the page >> >> ----------- >> Regards, >> Subramanya > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. Get Certified Today > Register for a JBoss Training Course. Free Certification Exam > for All Training Attendees Through End of 2005. For more info visit: > http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click > _______________________________________________ > Mrpostman-developers mailing list > Mrp...@li... > https://lists.sourceforge.net/lists/listinfo/mrpostman-developers > |
|
From: Martin V. <mv...@us...> - 2005-11-18 19:16:20
|
It is not possible to call a javascript function from MrPostman, you have to analyze the javascript code and in your webmail script get all relevant data from the page/javascript and calculate the encoded password yourself. Subramanya H S wrote: > Thanks for replay > > but the script is encoding the password given to some format which is > changing every time when you submit to the link. > > Please give the idea about how to call a java script functions which > is present in the page > > ----------- > Regards, > Subramanya |
|
From: Subramanya H S <sub...@gm...> - 2005-11-15 16:20:41
|
Thanks for replay but the script is encoding the password given to some format which is changing every time when you submit to the link. Please give the idea about how to call a java script functions which is present in the page ----------- Regards, Subramanya |
|
From: Siafu K. <sia...@ju...> - 2005-11-15 12:13:44
|
Subramanya H S wrote: > Hi, > > can i execute the javascript function which is present in the website > using MrPostman because i have to execute the javascript functions to > get the dynamic value from that so i can login to the webmail account > > > waiting for the replay > > Regards > Subramanya Normally it is preferable to program the JavaScript's logic into your script rather than executing the JavaScript on a page. For example, if the JavaScript changes some values in the form (like folder=Inbox), then simply change the form parameters and submit the form yourself through your script... |
|
From: Subramanya H S <sub...@gm...> - 2005-11-15 05:49:54
|
Hi, can i execute the javascript function which is present in the website usin= g MrPostman because i have to execute the javascript functions to get the dynamic value from that so i can login to the webmail account waiting for the replay Regards Subramanya |
|
From: Siafu K. <sia...@ju...> - 2005-10-09 20:56:27
|
I traced my problem with a null attachment.text in the Juno/Netzero script to the getHeaderAttr(...) function in the GenericMailSession class. The regular expression used in this file required Content-Disposition to have no spaces between filename="" where Juno has a space between filename= "". I have uploaded a patched version of GenericMailSession.java and and updated Juno/Netzero script that allow filenames to be maintained, even if they are really long. |
|
From: Siafu K. <sia...@ju...> - 2005-10-08 21:05:52
|
According to the MrPostman documentation, setting attachment.text to null or "" should attempt to find the name of the attachment from the Content-Disposition HTTP Header when the attachment is downloaded. I have tried to modify the Juno script to use this feature, but the attachments end up with the name "attachment". Here is a copy of the HTTP transaction (with headers) that show the attachment name in the Content-Disposition header: ------------------------------------------ HTTP/1.1 200 OK Date: Sat, 08 Oct 2005 20:56:29 GMT Server: Apache/1.3.29 (Unix) mod_fastcgi/2.2.10 Content-Disposition: attachment; filename= "New Text Document Like you would not believe.doc"; P3P: policyref="http://my.juno.com/common/w3c/juno.xml",CP="CAO DSP CURa ADMa DEVa TAIa PSAa PSDa OUR BUS IND PHY ONL UNI FIN COM NAV INT DEM PRE LOC" Connection: close Content-Type: application/octet-stream; Testing.... ------------------------------------------ Could the problem be that there is a space between filename= and the quote? Any help/recommendations would be appreciated. When the attachment name is too long, Juno truncates it and adds ... to the end. This loses the attachment type and forces me to manually go to the website or guess. Thanks... |
|
From: mk r. <kes...@ya...> - 2005-10-06 05:48:38
|
Hi, Since I am behind firewall, I require Proxy Authorization toaccess web, when use MrPostman 1.2 Build 20050827 for readingmail from rediffmail, I get Proxy Authorization error. Any body helps to solve theabove problem. Regards, M. Keshava Rao --------------------------------- Yahoo! India Matrimony: Find your partner now. |
|
From: Martin V. <mar...@gm...> - 2005-09-25 15:53:20
|
Hi Srikanth, Please shorten the names of the feeds and do not use blanks, as not all email clients will work with blanks in the user name. Best would be just to use lower case characters. The reason for keeping the names short is that some users might want to use more than one of the feeds and then the user name would get to long, e.g. "rediff_com-top stories india edition.rediff_com-top stories US edition@rss". I will then put it on the web site and in the next release. Thanks, Martin sri...@gm... wrote: >rss script for rediff.com > >Srikanth.C > |
|
From: kaveri t. <kav...@ya...> - 2005-09-24 07:34:14
|
dear sir, we are using the Mr.Postman 1.2 and we are facign the problem during updating the scripts through local hosts.if you have any documentation or procedure for updting scripts through local hosts we will be more than happy to recieve from your side . thank you, prashanth A --------------------------------- Yahoo! India Matrimony: Find your partner now. |
|
From: <sri...@gm...> - 2005-09-23 21:25:38
|
rss script for rediff.com Srikanth.C |
|
From: Michael H. <iti...@ho...> - 2005-09-05 03:55:28
|
Hi AH, I can understand your confusion with starting MrPostman with the GUI console. It is an unusual approach (in my limited exposure to JAVA programs) and it also seems a little unreliable. To test your assertions, I changed my port from 11110 to 110 and clicked "Apply". I was presented with a window that stated that I must restart MrPostman for the changes to take effect. I closed MrPostman using the 'X' in the corner, and restarted it only to find that it was still set on port 11110. The method I found to make it actually save settings is to make the changes and click "Apply", then click on "View--> Close GUI". This makes the settings stick. Then, to comply with "You must restart blah blah blah..." I restarted MrPostman to get to the GUI again and then clicked the "X" in the corner. Then I started it again and opened the GUI to make sure the settings stuck and they did. Then I closed the GUI using "View--> Close GUI". Yes, it's a pain in the ass, but I love the convenience of using MrPostman so it's something that I'm willing to work around. As for the message in the log file, I think that when starting the program as a service, it overrides any preference to display the GUI (services are normally silent by default). If you really need it to show the GUI each time, drag the icon into your startup folder as I explained before. Good luck, and let us know if this works out for you. -Mike mrahk . wrote: > Hi Mike, > > Thanks for your reaction. > > Well, I don't reply to the users mailinglist since Hotmail makes a mess > of this message (it looks like a webpage). Instead I'll copy and paste > it a bit and I'll forward this to the developers also, probably they > know something to solve the problem. > Anyway, concerning your answer. I think It doesn't answer my problem so > far. > > You point out that the GUI runs independently from the service, that > would explain the behaviour as shown in the log file, but I think it > doesn't explain why the program writes in the logfile: > > INFO: NOT Starting gui according to preferences > > And in the help file it says: > > "ATTENTION: The services run with another user. If you want to use > non-standard option values you have to set them again: Start the > service, then start MrPostman again normally - this will pop up the GUI > of the service (at least with XP). Check and/or modify the options or > import settings." > > What I want to know is how I can make the service to use port 110 for > retrieving mail and port 25 for sending mail instead of the standard > ports (11110 and 25250). As I do as described in the helpfile (so the > instructions mentioned above) the service still continues to use the > standard ports (and I do use XP, so I guess that should not be the > problem). > > Yours, > A.H. Kamminga. > > Hi A.H., > > You have posted this to a mailing list, so people like me are welcome to > try to help you. Note that I *am not* a developer of MrPostman...I'm > just another happy user. If you need more support, please choose "Reply > All" so that your request is delivered to all of us for the best response. > > I do not believe that the GUI is meant to run along with the service. If > you want the GUI to start, put a shortcut to the batch file in your > startup folder and enable the check mark to "open the GUI upon startup" > (as I presume you already have). The point of running as a service is > to put it in the background and automate it. > > Also, if you are trying to debug the problem, simply allow the service > to start (as you have) and then click on the MrPostman icon. Because > the service is already started, the GUI will be displayed. Had the > service not been started, the GUI will NOT be displayed the first time > MrPostman is started manually. It will only be displayed if MrPostman > is already running. > > Hope this helps, > -mike > > > mrahk . wrote: > Dear mr/mrs, > > On the internet I found your great program. This is what I've been > looking for for a long time. > When using the GUI-version everything works fantastic, but when trying > to use the program as a service there appears to be a small annoying > problem: > > My firewall can only scan for viruses in E-mail messages through port 25 > en 110 (standard SMTP and POP). So I decided to change this in the GUI. > And of course the program works great. But when trying to use the > service (no GUI) my E-mail program suddenly cannot retrieve any mail > messages. > When I look in the logfile of mrpostman it says: > ---------------------------------------------------------------------------------------------------------- > > > STATUS | wrapper | 2005/09/01 22:24:04 | --> Wrapper Started as Service > STATUS | wrapper | 2005/09/01 22:24:05 | Launching a JVM... > INFO | jvm 1 | 2005/09/01 22:24:05 | Wrapper (Version 3.1.0) > http://wrapper.tanukisoftware.org > INFO | jvm 1 | 2005/09/01 22:24:05 | > INFO | jvm 1 | 2005/09/01 22:24:06 | 1-sep-2005 22:24:06 > org.mrbook.mrpostman.Settings <clinit> > INFO | jvm 1 | 2005/09/01 22:24:06 | INFO: Loading preferences > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman initModules > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: initialisation of Modules > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman testAndAddModule > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Loaded module: > org.mrbook.mrpostman.generic.GenericMailSession > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.pop.PopServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting PopServer on > port 11110 > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.pop.PopServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: PopServer started > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.smtp.SmtpServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting SmtpServer on > port 25250 > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.smtp.SmtpServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: SmtpServer started > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: NOT Starting gui > according to preferences > INFO | jvm 1 | 2005/09/01 22:24:07 | MrPostmanService started. > ---------------------------------------------------------------------------------------------------------- > > > > As it says: the program did not start according to the preferences... > My question is: can I make the service to respect the preferences I have > set? > > Sincerely yours, > > A.H. Kamminga. > > > -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.344 / Virus Database: 267.10.18/89 - Release Date: 9/2/2005 |
|
From: Martin V. <mv...@us...> - 2005-09-02 17:03:14
|
Hi A.H. The service runs without the GUI, but when you start MrPostman again via icon/link, this (second) MrPostman instance will send a message to the service to open the GUI - under XP you probably see the difference, because when the service's GUI pops up, you will see it in the standard Java skin as opposed to the Windows skin, when no service is running. If you then change the ports, you will get a message that this requires you to restart MrPostman. The MrPostman service can only be restarted by a) rebooting your system or b) by uninstalling and reinstalling it (as the message in the install-service script also tells you). Module settings can be changed without having to restart MrPostman. Thus just reboot your system and the service should use the desired ports. Hope this helps, Martin mrahk . wrote: > Hi Mike, > > Thanks for your reaction. > > Well, I don't reply to the users mailinglist since Hotmail makes a > mess of this message (it looks like a webpage). Instead I'll copy and > paste it a bit and I'll forward this to the developers also, probably > they know something to solve the problem. > Anyway, concerning your answer. I think It doesn't answer my problem > so far. > > You point out that the GUI runs independently from the service, that > would explain the behaviour as shown in the log file, but I think it > doesn't explain why the program writes in the logfile: > > INFO: NOT Starting gui according to preferences > > And in the help file it says: > > "ATTENTION: The services run with another user. If you want to use > non-standard option values you have to set them again: Start the > service, then start MrPostman again normally - this will pop up the > GUI of the service (at least with XP). Check and/or modify the options > or import settings." > > What I want to know is how I can make the service to use port 110 for > retrieving mail and port 25 for sending mail instead of the standard > ports (11110 and 25250). As I do as described in the helpfile (so the > instructions mentioned above) the service still continues to use the > standard ports (and I do use XP, so I guess that should not be the > problem). > > Yours, > A.H. Kamminga. > > Hi A.H., > > You have posted this to a mailing list, so people like me are welcome > to try to help you. Note that I *am not* a developer of > MrPostman...I'm just another happy user. If you need more support, > please choose "Reply All" so that your request is delivered to all of > us for the best response. > > I do not believe that the GUI is meant to run along with the service. > If you want the GUI to start, put a shortcut to the batch file in your > startup folder and enable the check mark to "open the GUI upon > startup" (as I presume you already have). The point of running as a > service is to put it in the background and automate it. > > Also, if you are trying to debug the problem, simply allow the service > to start (as you have) and then click on the MrPostman icon. Because > the service is already started, the GUI will be displayed. Had the > service not been started, the GUI will NOT be displayed the first time > MrPostman is started manually. It will only be displayed if MrPostman > is already running. > > Hope this helps, > -mike > > > mrahk . wrote: > Dear mr/mrs, > > On the internet I found your great program. This is what I've been > looking for for a long time. > When using the GUI-version everything works fantastic, but when trying > to use the program as a service there appears to be a small annoying > problem: > > My firewall can only scan for viruses in E-mail messages through port > 25 en 110 (standard SMTP and POP). So I decided to change this in the > GUI. And of course the program works great. But when trying to use the > service (no GUI) my E-mail program suddenly cannot retrieve any mail > messages. > When I look in the logfile of mrpostman it says: > ---------------------------------------------------------------------------------------------------------- > > > STATUS | wrapper | 2005/09/01 22:24:04 | --> Wrapper Started as Service > STATUS | wrapper | 2005/09/01 22:24:05 | Launching a JVM... > INFO | jvm 1 | 2005/09/01 22:24:05 | Wrapper (Version 3.1.0) > http://wrapper.tanukisoftware.org > INFO | jvm 1 | 2005/09/01 22:24:05 | > INFO | jvm 1 | 2005/09/01 22:24:06 | 1-sep-2005 22:24:06 > org.mrbook.mrpostman.Settings <clinit> > INFO | jvm 1 | 2005/09/01 22:24:06 | INFO: Loading preferences > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman initModules > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: initialisation of Modules > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman testAndAddModule > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Loaded module: > org.mrbook.mrpostman.generic.GenericMailSession > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.pop.PopServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting PopServer on > port 11110 > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.pop.PopServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: PopServer started > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.smtp.SmtpServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting SmtpServer on > port 25250 > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.smtp.SmtpServer <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: SmtpServer started > INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 > org.mrbook.mrpostman.MrPostman <init> > INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: NOT Starting gui > according to preferences > INFO | jvm 1 | 2005/09/01 22:24:07 | MrPostmanService started. > ---------------------------------------------------------------------------------------------------------- > > > > As it says: the program did not start according to the preferences... > My question is: can I make the service to respect the preferences I > have set? > > Sincerely yours, > > A.H. Kamminga. > > > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > Mrpostman-developers mailing list > Mrp...@li... > https://lists.sourceforge.net/lists/listinfo/mrpostman-developers > > |
|
From: mrahk . <mr...@ho...> - 2005-09-02 13:45:43
|
Hi Mike, Thanks for your reaction. Well, I don't reply to the users mailinglist since Hotmail makes a mess of this message (it looks like a webpage). Instead I'll copy and paste it a bit and I'll forward this to the developers also, probably they know something to solve the problem. Anyway, concerning your answer. I think It doesn't answer my problem so far. You point out that the GUI runs independently from the service, that would explain the behaviour as shown in the log file, but I think it doesn't explain why the program writes in the logfile: INFO: NOT Starting gui according to preferences And in the help file it says: "ATTENTION: The services run with another user. If you want to use non-standard option values you have to set them again: Start the service, then start MrPostman again normally - this will pop up the GUI of the service (at least with XP). Check and/or modify the options or import settings." What I want to know is how I can make the service to use port 110 for retrieving mail and port 25 for sending mail instead of the standard ports (11110 and 25250). As I do as described in the helpfile (so the instructions mentioned above) the service still continues to use the standard ports (and I do use XP, so I guess that should not be the problem). Yours, A.H. Kamminga. Hi A.H., You have posted this to a mailing list, so people like me are welcome to try to help you. Note that I *am not* a developer of MrPostman...I'm just another happy user. If you need more support, please choose "Reply All" so that your request is delivered to all of us for the best response. I do not believe that the GUI is meant to run along with the service. If you want the GUI to start, put a shortcut to the batch file in your startup folder and enable the check mark to "open the GUI upon startup" (as I presume you already have). The point of running as a service is to put it in the background and automate it. Also, if you are trying to debug the problem, simply allow the service to start (as you have) and then click on the MrPostman icon. Because the service is already started, the GUI will be displayed. Had the service not been started, the GUI will NOT be displayed the first time MrPostman is started manually. It will only be displayed if MrPostman is already running. Hope this helps, -mike mrahk . wrote: Dear mr/mrs, On the internet I found your great program. This is what I've been looking for for a long time. When using the GUI-version everything works fantastic, but when trying to use the program as a service there appears to be a small annoying problem: My firewall can only scan for viruses in E-mail messages through port 25 en 110 (standard SMTP and POP). So I decided to change this in the GUI. And of course the program works great. But when trying to use the service (no GUI) my E-mail program suddenly cannot retrieve any mail messages. When I look in the logfile of mrpostman it says: ---------------------------------------------------------------------------------------------------------- STATUS | wrapper | 2005/09/01 22:24:04 | --> Wrapper Started as Service STATUS | wrapper | 2005/09/01 22:24:05 | Launching a JVM... INFO | jvm 1 | 2005/09/01 22:24:05 | Wrapper (Version 3.1.0) http://wrapper.tanukisoftware.org INFO | jvm 1 | 2005/09/01 22:24:05 | INFO | jvm 1 | 2005/09/01 22:24:06 | 1-sep-2005 22:24:06 org.mrbook.mrpostman.Settings <clinit> INFO | jvm 1 | 2005/09/01 22:24:06 | INFO: Loading preferences INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.MrPostman initModules INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: initialisation of Modules INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.MrPostman testAndAddModule INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Loaded module: org.mrbook.mrpostman.generic.GenericMailSession INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.pop.PopServer <init> INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting PopServer on port 11110 INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.pop.PopServer <init> INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: PopServer started INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.smtp.SmtpServer <init> INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: Starting SmtpServer on port 25250 INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.smtp.SmtpServer <init> INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: SmtpServer started INFO | jvm 1 | 2005/09/01 22:24:07 | 1-sep-2005 22:24:07 org.mrbook.mrpostman.MrPostman <init> INFO | jvm 1 | 2005/09/01 22:24:07 | INFO: NOT Starting gui according to preferences INFO | jvm 1 | 2005/09/01 22:24:07 | MrPostmanService started. ---------------------------------------------------------------------------------------------------------- As it says: the program did not start according to the preferences... My question is: can I make the service to respect the preferences I have set? Sincerely yours, A.H. Kamminga. |