mail/p5-GetLive

2014-05-02 Thread Mike Erdely
Does anyone still use mail/p5-GetLive?

It's end of life has just been announced:
http://sourceforge.net/p/getlive/news/2014/05/the-end-of-getlive---stay-tuned/

If nobody uses it, anyone care to tedu it?

Thanks.

-ME

Index: Makefile
===
RCS file: /cvs/ports/mail/Makefile,v
retrieving revision 1.304
diff -u -p -r1.304 Makefile
--- Makefile21 Apr 2014 11:47:08 -  1.304
+++ Makefile2 May 2014 14:13:19 -
@@ -125,7 +125,6 @@
  SUBDIR += p5-Email-Valid-Loose
  SUBDIR += p5-FuzzyOcr
  SUBDIR += p5-GMail-IMAPD
- SUBDIR += p5-GetLive
  SUBDIR += p5-Log-Procmail
  SUBDIR += p5-MIME-Base32
  SUBDIR += p5-MIME-Charset
Index: p5-GetLive/Makefile
===
RCS file: p5-GetLive/Makefile
diff -N p5-GetLive/Makefile
--- p5-GetLive/Makefile 19 Nov 2013 15:47:32 -  1.15
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,40 +0,0 @@
-# $OpenBSD: Makefile,v 1.15 2013/11/19 15:47:32 merdely Exp $
-
-COMMENT=   automatically fetch outlook.com email
-
-DISTNAME=  GetLive_3_0
-PKGNAME=   p5-GetLive-3.0
-PKG_ARCH=  *
-CATEGORIES=mail perl5
-EXTRACT_SUFX=  .tgz
-
-MAINTAINER=Michael Erdely 
-
-# GPLv2+
-PERMIT_PACKAGE_CDROM=  Yes
-
-MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=getlive/}
-
-RUN_DEPENDS=   devel/p5-Net-Server \
-   net/curl>=7.15.5 \
-   mail/procmail \
-   www/p5-HTML-Parser \
-   www/p5-URI \
-   www/p5-WWW-Mechanize-GZip \
-   www/p5-libwww
-
-NO_BUILD=  Yes
-NO_TEST=   Yes
-
-post-patch:
-   @${SUBST_CMD} ${WRKSRC}/{GetLive.pl,Manual}
-
-do-install:
-   ${INSTALL_SCRIPT} ${WRKSRC}/GetLive.pl ${PREFIX}/bin/GetLive
-   ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/GetLive
-   ${INSTALL_SCRIPT} ${WRKSRC}/{SmtpAuthForward,SmtpForward}.pl \
-   ${PREFIX}/share/examples/GetLive/
-   ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/GetLive
-   ${INSTALL_DATA} ${WRKSRC}/{License,Manual} ${PREFIX}/share/doc/GetLive
-
-.include 
Index: p5-GetLive/distinfo
===
RCS file: p5-GetLive/distinfo
diff -N p5-GetLive/distinfo
--- p5-GetLive/distinfo 19 Nov 2013 15:47:32 -  1.8
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,2 +0,0 @@
-SHA256 (GetLive_3_0.tgz) = 2DPZamX49O8gkXyyheUBijY29MXvdYVk3yS4HEVwGTA=
-SIZE (GetLive_3_0.tgz) = 27311
Index: p5-GetLive/patches/patch-GetLive_pl
===
RCS file: p5-GetLive/patches/patch-GetLive_pl
diff -N p5-GetLive/patches/patch-GetLive_pl
--- p5-GetLive/patches/patch-GetLive_pl 19 Nov 2013 15:47:33 -  1.8
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,45 +0,0 @@
-Diff from GetLive CVS to incorporate Outlook.com site changes.
-
-$OpenBSD: patch-GetLive_pl,v 1.8 2013/11/19 15:47:33 merdely Exp $
 GetLive.pl.origTue Apr  2 17:10:46 2013
-+++ GetLive.pl Sat Nov 16 22:27:39 2013
-@@ -92,7 +92,7 @@ sub new {
-   $Self->{'Login'} = "";
-   $Self->{'Domain'}= "hotmail.com";
-   $Self->{'Password'}  = "";
--  $Self->{'MailProcessor'} = '/usr/bin/procmail'; # Any program taking 
mbox formatted at stdin will do.
-+  $Self->{'MailProcessor'} = '${LOCALBASE}/bin/procmail'; # Any program 
taking mbox formatted at stdin will do.
-   $Self->{'DownloadedIdsFile'} = "";  # Local file with Ids 
of already downloaded messages.
-   $Self->{'MarkRead'}  = "No";# No,Yes : But never 
when downloaded before !
-   $Self->{'Delete'}= "No";# No,Yes : But never 
when downloaded before !
-@@ -398,6 +398,8 @@ sub GetPage {
-  
-   $Self->Log("Response headers : \n" . $Response->headers_as_string(), 
MinVerbosity => 100);
- 
-+  $Self->Log("Response content : \n" . $Response->content(), MinVerbosity => 
100);
-+
-   return ($Response->content(),uri_unescape($Response->request->uri));
- }
- 
-@@ -457,16 +459,15 @@ sub Login {
-   my $Domain = $Self->{'Domain'};
-   my ($LoginUrl) = $LoginPageAsString =~ 
m{'(https://login.live.com/ppsecure/post.srf.*?)'};
- 
--  if ($LoginPageAsString !~ m/F:'(P.*?)'/s) {
-- $Self->Log("Page doesn't contain PPSX in the expected place.\n",stderr 
=> 1);
-- return 0;
-+  if ($LoginPageAsString !~ m/[F|AP]:'(P.*?)'/s) {
-+$PostData{"PPSX"} = "Pass";
-+  } else {
-+$Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
-+$PostData{"PPSX"} = $1;
-   }
-   
-   # End o

Re: [Update] mail/p5-GetLive

2013-11-18 Thread Mike Erdely
On Sat, Nov 16, 2013 at 10:55:50PM -0500, Mike Erdely wrote:
> It updates GetLive to 3.0 and supports Outlook.com.
> It includes two changes checked into the project CVS but aren't in the 
> release to fix login page changes on Outlook.com.
> 
> ok?

And now a diff that doesn't remove ${LOCALBASE} from its patches.

Index: Makefile
===
RCS file: /cvs/ports/mail/p5-GetLive/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile11 Mar 2013 11:23:52 -  1.14
+++ Makefile18 Nov 2013 16:53:20 -
@@ -2,8 +2,8 @@
 
 COMMENT=   automatically fetch hotmail.com email
 
-DISTNAME=  GetLive_2_4
-PKGNAME=   p5-GetLive-2.4
+DISTNAME=  GetLive_3_0
+PKGNAME=   p5-GetLive-3.0
 PKG_ARCH=  *
 CATEGORIES=mail perl5
 EXTRACT_SUFX=  .tgz
@@ -18,7 +18,10 @@ MASTER_SITES=${MASTER_SITE_SOURCEFORGE:
 RUN_DEPENDS=   devel/p5-Net-Server \
net/curl>=7.15.5 \
mail/procmail \
-   www/p5-URI
+   www/p5-HTML-Parser \
+   www/p5-URI \
+   www/p5-WWW-Mechanize-GZip \
+   www/p5-libwww
 
 NO_BUILD=  Yes
 NO_TEST=   Yes
Index: distinfo
===
RCS file: /cvs/ports/mail/p5-GetLive/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo20 Sep 2011 13:43:37 -  1.7
+++ distinfo18 Nov 2013 16:53:20 -
@@ -1,5 +1,2 @@
-MD5 (GetLive_2_4.tgz) = Ek4sX0pLHXsYi2BXr7hpfg==
-RMD160 (GetLive_2_4.tgz) = uLNSaPrhFmNZWNDR4nfHgJC0Rg4=
-SHA1 (GetLive_2_4.tgz) = wQC3zHR4mbNMFu3N6fabhNmsbkI=
-SHA256 (GetLive_2_4.tgz) = Wk43+E8d9tmo8iGfU5Y2b6T9i8lYGruCtLUtxUSRYtI=
-SIZE (GetLive_2_4.tgz) = 29524
+SHA256 (GetLive_3_0.tgz) = 2DPZamX49O8gkXyyheUBijY29MXvdYVk3yS4HEVwGTA=
+SIZE (GetLive_3_0.tgz) = 27311
Index: patches/patch-GetLive_pl
===
RCS file: /cvs/ports/mail/p5-GetLive/patches/patch-GetLive_pl,v
retrieving revision 1.7
diff -u -p -r1.7 patch-GetLive_pl
--- patches/patch-GetLive_pl5 May 2011 13:37:04 -   1.7
+++ patches/patch-GetLive_pl18 Nov 2013 16:53:20 -
@@ -1,9 +1,9 @@
-Diff from GetLive CVS to incorporate Hotmail site changes.
+Diff from GetLive CVS to incorporate Outlook.com site changes.
 
 $OpenBSD: patch-GetLive_pl,v 1.7 2011/05/05 13:37:04 gsoares Exp $
 GetLive.pl.origMon May  2 14:49:46 2011
-+++ GetLive.pl Mon May  2 15:02:56 2011
-@@ -91,7 +91,7 @@ sub new {
+--- GetLive.pl.origTue Apr  2 17:10:46 2013
 GetLive.pl Sat Nov 16 22:27:39 2013
+@@ -92,7 +92,7 @@ sub new {
$Self->{'Login'} = "";
$Self->{'Domain'}= "hotmail.com";
$Self->{'Password'}  = "";
@@ -12,3 +12,34 @@ $OpenBSD: patch-GetLive_pl,v 1.7 2011/05
$Self->{'DownloadedIdsFile'} = "";  # Local file with Ids 
of already downloaded messages.
$Self->{'MarkRead'}  = "No";# No,Yes : But never 
when downloaded before !
$Self->{'Delete'}= "No";# No,Yes : But never 
when downloaded before !
+@@ -398,6 +398,8 @@ sub GetPage {
+  
+   $Self->Log("Response headers : \n" . $Response->headers_as_string(), 
MinVerbosity => 100);
+ 
++  $Self->Log("Response content : \n" . $Response->content(), MinVerbosity => 
100);
++
+   return ($Response->content(),uri_unescape($Response->request->uri));
+ }
+ 
+@@ -457,16 +459,15 @@ sub Login {
+   my $Domain = $Self->{'Domain'};
+   my ($LoginUrl) = $LoginPageAsString =~ 
m{'(https://login.live.com/ppsecure/post.srf.*?)'};
+ 
+-  if ($LoginPageAsString !~ m/F:'(P.*?)'/s) {
+- $Self->Log("Page doesn't contain PPSX in the expected place.\n",stderr 
=> 1);
+- return 0;
++  if ($LoginPageAsString !~ m/[F|AP]:'(P.*?)'/s) {
++$PostData{"PPSX"} = "Pass";
++  } else {
++$Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
++$PostData{"PPSX"} = $1;
+   }
+   
+   # End of Michael Kelly patch.
+ 
+-  $Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
+-  $PostData{"PPSX"} = $1;
+-  
+   # PPFT is a normal (ie non JS) hidden input type.
+   if( $LoginPageAsString !~ 
m/<\s*input\s+.*name=\"PPFT\"(\s+id="\S+")?\s+value=\"(\S*)\"/ ) {
+ Self->Log("Page doesn't contain input field PPFT as expected.\n",stderr 
=> 1);
Index: patches/patch-Manual
===
RCS file: /cvs/ports/mail/p5-GetLive/patches/patch-Manual,v

[Update] mail/p5-GetLive

2013-11-16 Thread Mike Erdely
[Resending... I didn't see it hit the list]

This diff requires www/p5-WWW-Mechanize-GZip (emailed to ports@).

It updates GetLive to 3.0 and supports Outlook.com.
It includes two changes checked into the project CVS but aren't in the release 
to fix login page changes on Outlook.com.

ok?

Index: Makefile
===
RCS file: /cvs/ports/mail/p5-GetLive/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile11 Mar 2013 11:23:52 -  1.14
+++ Makefile17 Nov 2013 03:31:19 -
@@ -2,8 +2,8 @@
 
 COMMENT=   automatically fetch hotmail.com email
 
-DISTNAME=  GetLive_2_4
-PKGNAME=   p5-GetLive-2.4
+DISTNAME=  GetLive_3_0
+PKGNAME=   p5-GetLive-3.0
 PKG_ARCH=  *
 CATEGORIES=mail perl5
 EXTRACT_SUFX=  .tgz
@@ -18,7 +18,10 @@ MASTER_SITES=${MASTER_SITE_SOURCEFORGE:
 RUN_DEPENDS=   devel/p5-Net-Server \
net/curl>=7.15.5 \
mail/procmail \
-   www/p5-URI
+   www/p5-HTML-Parser \
+   www/p5-URI \
+   www/p5-WWW-Mechanize-GZip \
+   www/p5-libwww
 
 NO_BUILD=  Yes
 NO_TEST=   Yes
Index: distinfo
===
RCS file: /cvs/ports/mail/p5-GetLive/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo20 Sep 2011 13:43:37 -  1.7
+++ distinfo17 Nov 2013 03:31:19 -
@@ -1,5 +1,2 @@
-MD5 (GetLive_2_4.tgz) = Ek4sX0pLHXsYi2BXr7hpfg==
-RMD160 (GetLive_2_4.tgz) = uLNSaPrhFmNZWNDR4nfHgJC0Rg4=
-SHA1 (GetLive_2_4.tgz) = wQC3zHR4mbNMFu3N6fabhNmsbkI=
-SHA256 (GetLive_2_4.tgz) = Wk43+E8d9tmo8iGfU5Y2b6T9i8lYGruCtLUtxUSRYtI=
-SIZE (GetLive_2_4.tgz) = 29524
+SHA256 (GetLive_3_0.tgz) = 2DPZamX49O8gkXyyheUBijY29MXvdYVk3yS4HEVwGTA=
+SIZE (GetLive_3_0.tgz) = 27311
Index: patches/patch-GetLive_pl
===
RCS file: /cvs/ports/mail/p5-GetLive/patches/patch-GetLive_pl,v
retrieving revision 1.7
diff -u -p -r1.7 patch-GetLive_pl
--- patches/patch-GetLive_pl5 May 2011 13:37:04 -   1.7
+++ patches/patch-GetLive_pl17 Nov 2013 03:31:19 -
@@ -1,14 +1,45 @@
-Diff from GetLive CVS to incorporate Hotmail site changes.
+Diff from GetLive CVS to incorporate Outlook.com site changes.
 
 $OpenBSD: patch-GetLive_pl,v 1.7 2011/05/05 13:37:04 gsoares Exp $
 GetLive.pl.origMon May  2 14:49:46 2011
-+++ GetLive.pl Mon May  2 15:02:56 2011
-@@ -91,7 +91,7 @@ sub new {
+--- GetLive.pl.origTue Apr  2 17:10:46 2013
 GetLive.pl Sat Nov 16 22:27:39 2013
+@@ -92,7 +92,7 @@ sub new {
$Self->{'Login'} = "";
$Self->{'Domain'}= "hotmail.com";
$Self->{'Password'}  = "";
 -  $Self->{'MailProcessor'} = '/usr/bin/procmail'; # Any program taking 
mbox formatted at stdin will do.
-+  $Self->{'MailProcessor'} = '${LOCALBASE}/bin/procmail'; # Any program 
taking mbox formatted at stdin will do.
++  $Self->{'MailProcessor'} = '/usr/local/bin/procmail'; # Any program 
taking mbox formatted at stdin will do.
$Self->{'DownloadedIdsFile'} = "";  # Local file with Ids 
of already downloaded messages.
$Self->{'MarkRead'}  = "No";# No,Yes : But never 
when downloaded before !
$Self->{'Delete'}= "No";# No,Yes : But never 
when downloaded before !
+@@ -398,6 +398,8 @@ sub GetPage {
+  
+   $Self->Log("Response headers : \n" . $Response->headers_as_string(), 
MinVerbosity => 100);
+ 
++  $Self->Log("Response content : \n" . $Response->content(), MinVerbosity => 
100);
++
+   return ($Response->content(),uri_unescape($Response->request->uri));
+ }
+ 
+@@ -457,16 +459,15 @@ sub Login {
+   my $Domain = $Self->{'Domain'};
+   my ($LoginUrl) = $LoginPageAsString =~ 
m{'(https://login.live.com/ppsecure/post.srf.*?)'};
+ 
+-  if ($LoginPageAsString !~ m/F:'(P.*?)'/s) {
+- $Self->Log("Page doesn't contain PPSX in the expected place.\n",stderr 
=> 1);
+- return 0;
++  if ($LoginPageAsString !~ m/[F|AP]:'(P.*?)'/s) {
++$PostData{"PPSX"} = "Pass";
++  } else {
++$Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
++$PostData{"PPSX"} = $1;
+   }
+   
+   # End of Michael Kelly patch.
+ 
+-  $Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
+-  $PostData{"PPSX"} = $1;
+-  
+   # PPFT is a normal (ie non JS) hidden input type.
+   if( $LoginPageAsString !~ 
m/<\s*input\s+.*name=\"PPFT\"(\s+id=&q

[Update] mail/p5-GetLive

2013-11-16 Thread Mike Erdely
This diff requires www/p5-WWW-Mechanize-GZip (emailed to ports@).

It updates GetLive to 3.0 and supports Outlook.com.
It includes two changes checked into the project CVS but aren't in the release 
to fix login page changes on Outlook.com.

ok?

Index: Makefile
===
RCS file: /cvs/ports/mail/p5-GetLive/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile11 Mar 2013 11:23:52 -  1.14
+++ Makefile17 Nov 2013 03:31:19 -
@@ -2,8 +2,8 @@
 
 COMMENT=   automatically fetch hotmail.com email
 
-DISTNAME=  GetLive_2_4
-PKGNAME=   p5-GetLive-2.4
+DISTNAME=  GetLive_3_0
+PKGNAME=   p5-GetLive-3.0
 PKG_ARCH=  *
 CATEGORIES=mail perl5
 EXTRACT_SUFX=  .tgz
@@ -18,7 +18,10 @@ MASTER_SITES=${MASTER_SITE_SOURCEFORGE:
 RUN_DEPENDS=   devel/p5-Net-Server \
net/curl>=7.15.5 \
mail/procmail \
-   www/p5-URI
+   www/p5-HTML-Parser \
+   www/p5-URI \
+   www/p5-WWW-Mechanize-GZip \
+   www/p5-libwww
 
 NO_BUILD=  Yes
 NO_TEST=   Yes
Index: distinfo
===
RCS file: /cvs/ports/mail/p5-GetLive/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo20 Sep 2011 13:43:37 -  1.7
+++ distinfo17 Nov 2013 03:31:19 -
@@ -1,5 +1,2 @@
-MD5 (GetLive_2_4.tgz) = Ek4sX0pLHXsYi2BXr7hpfg==
-RMD160 (GetLive_2_4.tgz) = uLNSaPrhFmNZWNDR4nfHgJC0Rg4=
-SHA1 (GetLive_2_4.tgz) = wQC3zHR4mbNMFu3N6fabhNmsbkI=
-SHA256 (GetLive_2_4.tgz) = Wk43+E8d9tmo8iGfU5Y2b6T9i8lYGruCtLUtxUSRYtI=
-SIZE (GetLive_2_4.tgz) = 29524
+SHA256 (GetLive_3_0.tgz) = 2DPZamX49O8gkXyyheUBijY29MXvdYVk3yS4HEVwGTA=
+SIZE (GetLive_3_0.tgz) = 27311
Index: patches/patch-GetLive_pl
===
RCS file: /cvs/ports/mail/p5-GetLive/patches/patch-GetLive_pl,v
retrieving revision 1.7
diff -u -p -r1.7 patch-GetLive_pl
--- patches/patch-GetLive_pl5 May 2011 13:37:04 -   1.7
+++ patches/patch-GetLive_pl17 Nov 2013 03:31:19 -
@@ -1,14 +1,45 @@
-Diff from GetLive CVS to incorporate Hotmail site changes.
+Diff from GetLive CVS to incorporate Outlook.com site changes.
 
 $OpenBSD: patch-GetLive_pl,v 1.7 2011/05/05 13:37:04 gsoares Exp $
 GetLive.pl.origMon May  2 14:49:46 2011
-+++ GetLive.pl Mon May  2 15:02:56 2011
-@@ -91,7 +91,7 @@ sub new {
+--- GetLive.pl.origTue Apr  2 17:10:46 2013
 GetLive.pl Sat Nov 16 22:27:39 2013
+@@ -92,7 +92,7 @@ sub new {
$Self->{'Login'} = "";
$Self->{'Domain'}= "hotmail.com";
$Self->{'Password'}  = "";
 -  $Self->{'MailProcessor'} = '/usr/bin/procmail'; # Any program taking 
mbox formatted at stdin will do.
-+  $Self->{'MailProcessor'} = '${LOCALBASE}/bin/procmail'; # Any program 
taking mbox formatted at stdin will do.
++  $Self->{'MailProcessor'} = '/usr/local/bin/procmail'; # Any program 
taking mbox formatted at stdin will do.
$Self->{'DownloadedIdsFile'} = "";  # Local file with Ids 
of already downloaded messages.
$Self->{'MarkRead'}  = "No";# No,Yes : But never 
when downloaded before !
$Self->{'Delete'}= "No";# No,Yes : But never 
when downloaded before !
+@@ -398,6 +398,8 @@ sub GetPage {
+  
+   $Self->Log("Response headers : \n" . $Response->headers_as_string(), 
MinVerbosity => 100);
+ 
++  $Self->Log("Response content : \n" . $Response->content(), MinVerbosity => 
100);
++
+   return ($Response->content(),uri_unescape($Response->request->uri));
+ }
+ 
+@@ -457,16 +459,15 @@ sub Login {
+   my $Domain = $Self->{'Domain'};
+   my ($LoginUrl) = $LoginPageAsString =~ 
m{'(https://login.live.com/ppsecure/post.srf.*?)'};
+ 
+-  if ($LoginPageAsString !~ m/F:'(P.*?)'/s) {
+- $Self->Log("Page doesn't contain PPSX in the expected place.\n",stderr 
=> 1);
+- return 0;
++  if ($LoginPageAsString !~ m/[F|AP]:'(P.*?)'/s) {
++$PostData{"PPSX"} = "Pass";
++  } else {
++$Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
++$PostData{"PPSX"} = $1;
+   }
+   
+   # End of Michael Kelly patch.
+ 
+-  $Self->Log("PPSX detected as '$1'.\n", MinVerbosity => 10 );
+-  $PostData{"PPSX"} = $1;
+-  
+   # PPFT is a normal (ie non JS) hidden input type.
+   if( $LoginPageAsString !~ 
m/<\s*input\s+.*name=\"PPFT\"(\s+id="\S+")?\s+value=\"(\S*)\"/ ) {

Update mail/p5-GetLive 0.56

2007-12-05 Thread Mike Erdely
This diff updates p5-GetLive to 0.56.

p5-GetLive allows one to download Hotmail and deliver it to another
address (or local mailbox).

It supercedes mail/gotmail (which is an abandoned, broken project).

Works for me on i386.  ok?

-ME

Index: Makefile
===
RCS file: /cvs/ports/mail/p5-GetLive/Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile
--- Makefile12 Nov 2007 17:30:30 -  1.2
+++ Makefile5 Dec 2007 21:33:01 -
@@ -2,8 +2,8 @@
 
 COMMENT=   automatically fetch hotmail.com email
 
-DISTNAME=  GetLive_0_55
-PKGNAME=   p5-GetLive-0.55
+DISTNAME=  GetLive_0_56
+PKGNAME=   p5-GetLive-0.56
 CATEGORIES=mail perl5
 EXTRACT_SUFX=  .tgz
 
Index: distinfo
===
RCS file: /cvs/ports/mail/p5-GetLive/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo12 Nov 2007 17:30:30 -  1.2
+++ distinfo5 Dec 2007 21:33:01 -
@@ -1,5 +1,5 @@
-MD5 (GetLive_0_55.tgz) = qACP1l5rfuVjhUi8xJyfxA==
-RMD160 (GetLive_0_55.tgz) = CHDbEfwZTky45+nIZ9pNnG3kIdw=
-SHA1 (GetLive_0_55.tgz) = aJ96LZHNgCOhN3Ynqgfa9h6jLGY=
-SHA256 (GetLive_0_55.tgz) = Wlf0oQpFmabKbeYyYqaCCalBKg5GhE3wv2rMae+t1aE=
-SIZE (GetLive_0_55.tgz) = 24827
+MD5 (GetLive_0_56.tgz) = dUsjrXrk2xszBH30MVJuBQ==
+RMD160 (GetLive_0_56.tgz) = fYuo3zE1J25BYZgHgX3C5yUEJkA=
+SHA1 (GetLive_0_56.tgz) = Fw3vnqiXcG0kGG6wnsJ1v9eyP7k=
+SHA256 (GetLive_0_56.tgz) = EJ62WlwmgSoLjYiRDeGT9wimdl+Rh1GskDcCPNpkpOs=
+SIZE (GetLive_0_56.tgz) = 25626



[new] mail/p5-GetLive

2007-10-09 Thread Mike Erdely
p5-GetLive is successor to mail/gotmail for Microsoft's new Hotmail
Live.

>From DESCR:
GetLive is a perl script that fetches mail from your Hotmail
Live account. The mail is then presented to any filter (typically 
procmail) for further processing or dropping in a local mailbox.

Tested on i386 with two different hotmail accounts delivering to
procmail.

ok?

-ME


p5-GetLive.tgz
Description: application/tar-gz