Hi all,
I have a problem while using Mail::POP3Server module.
I am reading a folder that contain more than one file. Using Telnet, i can
get the number of messages, size of each file and mail contents.
But i am not able to download it in to the client side.
Can anyone know to tackle this problem?
In Module this part is used for reading files from mail folder:
if (open QMAIL, "$home/.qmail") {
$maildir = <QMAIL>;
close QMAIL;
chomp $maildir;
$maildir =~ s/\/$//;
$maildir =~ s/^\.//;
$maildir =~ s/^\///;
$maildir = "$home/$maildir";
}
else {
###This part i am using
$maildir = "/usr/fweb/xyz/abc"
+;
}
opendir MAILDIR, "$maildir/$uid";
@maildir = grep !/^\./, readdir MAILDIR;
closedir MAILDIR;
@maildir = sort @maildir;
#&StatMailDir(\@maildir,$addedbytes);
## sPECIAL ##
foreach (@maildir)
{
++$messagecnt;
#### check/create the unique ID code
$octets{$messagecnt} = -s "$maildir/$uid/$_";
&UIDL;
#&PushMessage;
############
$octets{$messagecnt} += $addedbytes;
$totaloctets += $octets{$messagecnt};
}
Thanks
Edit kudra,
2002-10-27
Added code tags
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.