gbuffy is looking for message marked as "RECENT".
When you connect and look at headers, then the "RECENT" flag is removed
with courier.
This patch gets you closer to what you want, probably:
--- imap.c+ Tue Oct 7 08:54:23 2003
+++ imap.c Tue Oct 7 08:54:06 2003
@@ -525,7 +525,7 @@
* think we want that, so use UNSEEN instead */
/* Go back to using RECENT, as it shouldn't be updated on EXAMINE */
imap_make_sequence (seq, sizeof (seq));
- snprintf (buf, sizeof (buf), "%s STATUS %s (MESSAGES RECENT)\r\n", seq,
+ snprintf (buf, sizeof (buf), "%s STATUS %s (MESSAGES UNSEEN)\r\n", seq,
ibox->path);
msocket_write (conn, buf);
@@ -560,7 +560,7 @@
ibox->num_messages = atoi (s);
}
}
- else if (strncmp ("RECENT", s, 6) == 0)
+ else if (strncmp ("UNSEEN", s, 6) == 0)
{
s = imap_next_word (s);
if (isdigit (*s))
The only problem with that is that i've found that mail readers are acting
somewhat differently than I had gotten from using /var/mail/foo mbox
format.
With /var/mail/foo mbox format, you had Status headers that were written
into the messages. The interesting ones were:
No status: New
Status: O Old
Status: R Read
Now what you have is:
RECENT (which seems almost useless in courier unless you only use one instance
of one mail client period)
SEEN/UNSEEN (which corresponds to Read messages)
Mutt, which I use as a mailreader appears to me to recognize when it
opens that "RECENT" messages are new, and anything that isn't marked
as seen, but isn't "RECENT" is Old.
However, this is for initial connection. Only one "client" can do this
at once. I haven't figured out any way that gbuffy can even reasonably
tell the difference between these.
On Mon, Oct 06, 2003 at 03:11:39PM -0700, Net Nut did say:
>So, this works in that the box actually shows a number other than zero now,
>but I have noticed the minute I access on of the maildirs to see what mail
>is in there (even if I never open any mail itmes) the mailcount jumps to 0
>from whatever it was at (which was acurate untill I looked in the folder).
>
>Any idea what causes this?
>
>
>
>-----Original Message-----
>From: ksuquix [mailto:quixote@...]
>Sent: Friday, September 26, 2003 1:43 PM
>To: gbuffy@yahoogroups.com
>Subject: Re: still having trouble using this on a with courier imap server
>
>
>I just had this problem too.
>
>What I did to solve the problem was instead of this:
> path = INBOX;
>use this:
> path = "\"INBOX\"";
>
>(In the gui, put double quotes around inbox)
>
>When the status is coming back from courier, it is putting quotes around the
>inbox name, which gbuffy isn't parsing.
>
>--- In gbuffy@yahoogroups.com, NetNut404 <netnut404@u...> wrote:
>> more info...
>>
>> after sending a new mail to myself.. it says this in the debug log..
>>
>>
>> msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
>> msocket_read_line_d():a0004 OK STATUS Completed. msocket_write():a0005
>> STATUS inbox (MESSAGES RECENT)^M
>> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
>> msocket_read_line_d():a0005 OK STATUS Completed. msocket_write():a0006
>> STATUS inbox (MESSAGES RECENT)^M
>> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
>>
>> yet the number stays the same in gbuffy
>>
>>
>>
>> NetNut404 writes:
>>
>> > Oops I spoke too soon it did eventually write to the log after
>leaving it
>> > running for a while..
>> >
>> > it said
>> > cat .gbuffydebug
>> > msocket_read_line_d():* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN
>NAMESPACE
>> > THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS]
>> > Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc.
>See COPYING
>> > for distribution information.
>> > msocket_write():a0000 LOGIN "dauser" "password"
>> > msocket_read_line_d():a0000 OK LOGIN Ok. msocket_write():a0001
>> > STATUS inbox (MESSAGES RECENT)
>> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
>> > msocket_read_line_d():a0001 OK STATUS Completed.
>> > msocket_write():a0002 STATUS inbox (MESSAGES RECENT)
>> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
>> > msocket_read_line_d():a0002 OK STATUS Completed.
>> >
>> > so why does it always show 0 ?
>> >
>> >
>> >
>> > NetNut404 writes:
>> >
>> >> ok, that workd fo compiling, and now it took the -d 5 and said
>> >>
>> >> "-I- Debugging at level 5"
>> >>
>> >> but the debug file which was created remains 0 bytes even after
>putting in
>> >> the username and password both incorrectly, and correctly..
>> >>
>> >> ls -la .gbuffydebug
>> >> -rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00
>.gbuffydebug
>> >>
>> >> pointers?
>> >>
>> >>
>> >> Brandon Long writes:
>> >>
>> >>> yeah, that's a known issue, just delete that call to g_print.
>> >>>
>> >>> Brandon
>> >>>
>> >>> On 09/13/03 NetNut404 uttered the following other thing:
>> >>>> Hmm but when I do that it no longer compiles.. I get
>> >>>>
>> >>>> make
>> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
>config.o config.c
>> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o
>count.c
>> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o
>from.c
>> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
>> >>>> gbconfig.c
>> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
>gbuffy.o gbuffy.c
>> >>>> gbuffy.c: In function `main':
>> >>>> gbuffy.c:858: `width' undeclared (first use in this function)
>> >>>> gbuffy.c:858: (Each undeclared identifier is reported only once
>> >>>> gbuffy.c:858: for each function it appears in.)
>> >>>> gbuffy.c:858: `height' undeclared (first use in this function)
>> >>>> gbuffy.c:858: `horizontal' undeclared (first use in this
>> >>>> function)
>> >>>> gbuffy.c:858: `vertical' undeclared (first use in this function)
>> >>>> make: *** [gbuffy.o] Error 1
>> >>>>
>> >>>>
>> >>>> which looks to be this line
>> >>>>
>> >>>>
>> >>>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF:
>%d:%d\nYOFF: %d:%d\n",
>> >>>> > width, height, horizontal.sign, horizontal.value,
>vertical.sign,
>> >>>> vertical.value);
>> >>>>
>> >>>> this is in
>http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
>> >>>>
>> >>>> it also errors in
>> >>>>
>http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
>> >>>> same place (which is a different line # )
>> >>>>
>> >>>> pointers?
>> >>>>
>> >>>>
>> >>>>
>> >>>> Brandon Long writes:
>> >>>>
>> >>>> > Just define DEBUG in the config.h file
>> >>>> >
>> >>>> > Brandon
>> >>>> >
>> >>>> > On 09/12/03 NetNut404 uttered the following other thing:
>> >>>> >> ok, what option should be used for enableing debug ? I don't
>> >>>> >> see it in the configure script.
>> >>>> >>
>> >>>> >> Brandon Long writes:
>> >>>> >>
>> >>>> >> > If you compile with debug enabled, ./gbuffy -d 5 should
>log the entire
>> >>>> >> > imap traffic to ~/.gbuffydebug, and then you should see
>what command its
>> >>>> >> > issuing to see whats in the folder, and what the response
>is from the
>> >>>> >> > imap server.
>> >>>> >> >
>> >>>> >> > Brandon
>> >>>> >> >
>> >>>> >> > On 09/11/03 moseley@h... uttered the following other thing:
>> >>>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>> >>>> >> >> > oops meant to say I have
>> >>>> >> >> >
>> >>>> >> >> > courier-imap-2.1.1.20030902-1.9
>> >>>> >> >> >
>> >>>> >> >> > (same thing) I can't figure why for the life of me it
>does not work..
>> >>>> >> >> > the passowrds work, and it authenticates, but it always
>shows 0 not
>> >>>> >> >> > sure why.
>> >>>> >> >>
>> >>>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
>> >>>> >> >>
>> >>>> >> >
>> >>>> >> > --
>> >>>> >> > "After two years and two kids, he realizes that hooking
>up with an
>> >>>> >> > unstable meth freak cum slut wasn't the ace decision it
>seemed to be
>> >>>> >> > in his candy coated dreams."
>> >>>> >> >
>http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >>
>----------------------------------------------------------------
>> >>>> >> | grant@s... http://www.stephenson.cc |
>> >>>> >>
>----------------------------------------------------------------
>> >>>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp
>> >>>> >> | |
>> >>>> >>
>----------------------------------------------------------------
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >> Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >>>> >>
>> >>>> >
>> >>>> > --
>> >>>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
>> >>>> >
>http://www.fiction.net/blong/
>> >>>> >
>> >>>> > ------------------------ Yahoo! Groups Sponsor
>---------------------~-->
>> >>>> > Upgrade to 128-Bit SSL Security!
>> >>>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> >>>> >
>---------------------------------------------------------------------~->
>> >>>> >
>> >>>> >
>> >>>> >
>> >>>> > Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >>>> >
>> >>>> >
>> >>>>
>> >>>>
>> >>>>
>> >>>> ----------------------------------------------------------------
>> >>>> | grant@s... http://www.stephenson.cc |
>> >>>> ----------------------------------------------------------------
>> >>>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> >>>>
>----------------------------------------------------------------
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>> >>>> Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >>>>
>> >>>
>> >>> --
>> >>> "If you're falling off a cliff, you might as well try to fly.
> You've
>> >>> got nothing to lose." -- Delenn
>> >>>
>http://www.fiction.net/blong/
>> >>>
>> >>> ------------------------ Yahoo! Groups Sponsor
>
>> >>>
>> >>>
>> >>>
>> >>> Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >>>
>> >>>
>> >>
>> >>
>> >>
>> >> ----------------------------------------------------------------
>> >> | grant@s... http://www.stephenson.cc |
>> >> ----------------------------------------------------------------
>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> >> ----------------------------------------------------------------
>> >>
>> >>
>> >> ------------------------ Yahoo! Groups Sponsor
>---------------------~-->
>> >> Upgrade to 128-Bit SSL Security!
>> >> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> >>
>---------------------------------------------------------------------~->
>> >>
>> >>
>> >>
>> >> Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >>
>> >>
>> >
>> >
>> >
>> > ----------------------------------------------------------------
>> > | grant@s... http://www.stephenson.cc |
>> > ----------------------------------------------------------------
>> > | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> > ----------------------------------------------------------------
>> >
>> >
>> > ------------------------ Yahoo! Groups Sponsor
>---------------------~-->
>> > Upgrade to 128-Bit SSL Security!
>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> >
>---------------------------------------------------------------------~->
>> >
>> >
>> >
>> > Your use of Yahoo! Groups is subject to
>http://docs.yahoo.com/info/terms/
>> >
>> >
>>
>>
>>
>> ----------------------------------------------------------------
>> | grant@s... http://www.stephenson.cc |
>> ----------------------------------------------------------------
>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> ----------------------------------------------------------------
>
>
>
>
>
>Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
--
Don Quixote -- quixote@...http://toysmakeuspowerful.com
"I ought not to let my mind wander, as it's too small to go off by itself"
WebSune Card search engine: http://toysmakeuspowerful.com/search
Card auctions: http://imperialblock.com
Surplus/Vintage Gaming stuff: http://toysmakeuspowerful.com/store
Attached is a patch that fixes a number of problems with gbuffy
0.2.4:
* gbuffy.c: made debug file non-buffered.
* gbuffy.c: fixed g_print() of position data so it
compiles.
* imap.c: fixed parsing of STATUS response to tolerate
servers that return mailbox name in quotes.
* imap.c: changed default value from 0 to 1 for
starting seq number for FETCH command. First message
is 1: 0 isn't legal.
* libcompface/cmain.c: got rid of obsolete usage of
errno/sys_errlist and replaced it with strerror().
AFAICT, gbuffy with these patches works fine with the courier
IMAP server.
--
Grant Edwards
grante@...
diff -w -U10 -r gbuffy-0.2.4/ChangeLog gbuffy-0.2.4-fixed/ChangeLog
--- gbuffy-0.2.4/ChangeLog 2001-08-26 13:56:43.000000000 -0500
+++ gbuffy-0.2.4-fixed/ChangeLog 2003-10-06 22:02:12.000000000 -0500
@@ -1,10 +1,28 @@
+2003-10-06 Grant Edwards <grante@...>
+
+ * gbuffy.c: made debug file non-buffered.
+
+ * gbuffy.c: fixed g_print() of position data so it
+ compiles.
+
+ * imap.c: fixed parsing of STATUS response to tolerate
+ servers that return mailbox name in quotes.
+
+ * imap.c: changed default value from 0 to 1 for
+ starting seq number for FETCH command. First message
+ is 1: 0 isn't legal.
+
+ * libcompface/cmain.c: got rid of obsolete usage of
+ errno/sys_errlist and replaced it with strerror().
+
+
2001-05-15 Brandon Long <blong@pulp>
* gbuffy.c: oops, register poll first
2001-03-22 Brandon Long <blong@non>
* configure, configure.in, Makefile.in:
fix for case where we aren't building the applet
* acconfig.h, aclocal.m4, CHANGES, config.c, config.h.in, configure,
configure.in, gbconfig.c, gbuffy.c, gbuffy.desktop, gbuffy.gnorba, gbuffy.h,
imap.c, Makefile.in:
diff -w -U10 -r gbuffy-0.2.4/gbuffy.c gbuffy-0.2.4-fixed/gbuffy.c
--- gbuffy-0.2.4/gbuffy.c 2001-05-14 19:47:35.000000000 -0500
+++ gbuffy-0.2.4-fixed/gbuffy.c 2003-10-06 21:54:50.000000000 -0500
@@ -794,31 +794,31 @@
#ifdef DEBUG
if (argc == 3)
{
if (!strcmp (argv[1], "-d"))
{
debuglevel = atoi (argv[2]);
strfcpy (path, "~/.gbuffydebug", sizeof (path));
gbuffy_expand_path (path, sizeof (path));
debugfile = fopen (path, "w");
+ setvbuf(debugfile,NULL,_IONBF,0);
if (debugfile == NULL)
{
g_print ("-E- Unable to open debugfile %s\n", path);
gtk_exit (-1);
}
g_print ("-I- Debugging at level %d\n", debuglevel);
}
}
g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
- width, height, horizontal.sign, horizontal.value, vertical.sign,
- vertical.value);
+ Width, Height, HorizPos.sign, HorizPos.value, VertPos.sign,VertPos.value);
#endif
MailboxInfo = gbuffy_configure_load ();
if (MailboxInfo == NULL)
{
MailboxInfo = (BOX_INFO *) calloc (1, sizeof (BOX_INFO));
MailboxInfo->type = GB_MBOX;
if (getenv ("MAIL"))
MailboxInfo->path = safe_strdup (getenv ("MAIL"));
diff -w -U10 -r gbuffy-0.2.4/imap.c gbuffy-0.2.4-fixed/imap.c
--- gbuffy-0.2.4/imap.c 2001-03-21 21:25:06.000000000 -0600
+++ gbuffy-0.2.4-fixed/imap.c 2003-10-06 21:50:30.000000000 -0500
@@ -425,21 +425,21 @@
}
while ((strncmp (buf, seq, SEQLEN) != 0));
return 0;
}
static int imap_fetch_new_headers (BOX_INFO *ibox, CONNECTION *conn, GList
*headers)
{
char buf[LONG_STRING];
char seq[8];
char *s;
- int unseen = 0;
+ int unseen = 1;
/* Open mailbox (EXAMINE) and find the first UNSEEN message */
imap_make_sequence (seq, sizeof (seq));
snprintf (buf, sizeof (buf), "%s EXAMINE %s\r\n", seq, ibox->path);
msocket_write (conn, buf);
do
{
if (msocket_read_line_d (buf, sizeof (buf), conn) < 0)
{
@@ -537,21 +537,24 @@
conn->uses = 0;
return (-1);
}
if (buf[0] == '*')
{
s = imap_next_word (buf);
if (strncasecmp ("STATUS", s, 6) == 0)
{
s = imap_next_word (s);
- if (strncmp (ibox->path, s, strlen (ibox->path)) == 0)
+ if ((strncmp (ibox->path, s, strlen (ibox->path)) == 0) ||
+ (s[0] == '"' &&
+ (!strncmp(ibox->path,s+1,strlen(ibox->path))) &&
+ s[1+strlen(ibox->path)] == '"'))
{
s = imap_next_word (s);
if (*s == '(')
s++;
while ((s != NULL) && (*s != '\0'))
{
if (strncmp ("MESSAGES", s, 8) == 0)
{
s = imap_next_word (s);
if (isdigit (*s))
diff -w -U10 -r gbuffy-0.2.4/libcompface/cmain.c
gbuffy-0.2.4-fixed/libcompface/cmain.c
--- gbuffy-0.2.4/libcompface/cmain.c 1998-09-26 17:35:35.000000000 -0500
+++ gbuffy-0.2.4-fixed/libcompface/cmain.c 2003-10-06 13:46:09.000000000 -0500
@@ -26,26 +26,25 @@
int infile = 0;
char *inname = "<stdin>";
int outfile = 1;
char *outname = "<stdout>";
/* basename of executable */
char *cmdname;
/* error handling definitions follow */
-extern int errno, sys_nerr;
-extern char *sys_errlist[];
+#include <errno.h>
+#define ERR strerror(errno)
extern void exit P((int)) ;
-#define ERR ((errno < sys_nerr) ? sys_errlist[errno] : "")
#define INITERR(s) {(void)strcpy(fbuf, cmdname); (void)strcat(fbuf, ": ");\
(void)strcat(fbuf, (s));}
#define ADDERR(s) (void)strcat(fbuf, (s));
#define ERROR {(void)strcat(fbuf, "\n");\
(void)write(2, fbuf, strlen(fbuf)); exit(1);}
#define INITWARN(s) {(void)strcpy(fbuf, cmdname);\
(void)strcat(fbuf, ": (warning) ");\
(void)strcat(fbuf, (s));}
#define ADDWARN(s) (void)strcat(fbuf, (s));
#define WARN {(void)strcat(fbuf, "\n"); (void)write(2, fbuf, strlen(fbuf));}
So, this works in that the box actually shows a number other than zero now,
but I have noticed the minute I access on of the maildirs to see what mail
is in there (even if I never open any mail itmes) the mailcount jumps to 0
from whatever it was at (which was acurate untill I looked in the folder).
Any idea what causes this?
-----Original Message-----
From: ksuquix [mailto:quixote@...]
Sent: Friday, September 26, 2003 1:43 PM
To: gbuffy@yahoogroups.com
Subject: Re: still having trouble using this on a with courier imap server
I just had this problem too.
What I did to solve the problem was instead of this:
path = INBOX;
use this:
path = "\"INBOX\"";
(In the gui, put double quotes around inbox)
When the status is coming back from courier, it is putting quotes around the
inbox name, which gbuffy isn't parsing.
--- In gbuffy@yahoogroups.com, NetNut404 <netnut404@u...> wrote:
> more info...
>
> after sending a new mail to myself.. it says this in the debug log..
>
>
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> msocket_read_line_d():a0004 OK STATUS Completed. msocket_write():a0005
> STATUS inbox (MESSAGES RECENT)^M
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
> msocket_read_line_d():a0005 OK STATUS Completed. msocket_write():a0006
> STATUS inbox (MESSAGES RECENT)^M
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
>
> yet the number stays the same in gbuffy
>
>
>
> NetNut404 writes:
>
> > Oops I spoke too soon it did eventually write to the log after
leaving it
> > running for a while..
> >
> > it said
> > cat .gbuffydebug
> > msocket_read_line_d():* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN
NAMESPACE
> > THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS]
> > Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc.
See COPYING
> > for distribution information.
> > msocket_write():a0000 LOGIN "dauser" "password"
> > msocket_read_line_d():a0000 OK LOGIN Ok. msocket_write():a0001
> > STATUS inbox (MESSAGES RECENT)
> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> > msocket_read_line_d():a0001 OK STATUS Completed.
> > msocket_write():a0002 STATUS inbox (MESSAGES RECENT)
> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> > msocket_read_line_d():a0002 OK STATUS Completed.
> >
> > so why does it always show 0 ?
> >
> >
> >
> > NetNut404 writes:
> >
> >> ok, that workd fo compiling, and now it took the -d 5 and said
> >>
> >> "-I- Debugging at level 5"
> >>
> >> but the debug file which was created remains 0 bytes even after
putting in
> >> the username and password both incorrectly, and correctly..
> >>
> >> ls -la .gbuffydebug
> >> -rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00
.gbuffydebug
> >>
> >> pointers?
> >>
> >>
> >> Brandon Long writes:
> >>
> >>> yeah, that's a known issue, just delete that call to g_print.
> >>>
> >>> Brandon
> >>>
> >>> On 09/13/03 NetNut404 uttered the following other thing:
> >>>> Hmm but when I do that it no longer compiles.. I get
> >>>>
> >>>> make
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
config.o config.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o
count.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o
from.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
> >>>> gbconfig.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
gbuffy.o gbuffy.c
> >>>> gbuffy.c: In function `main':
> >>>> gbuffy.c:858: `width' undeclared (first use in this function)
> >>>> gbuffy.c:858: (Each undeclared identifier is reported only once
> >>>> gbuffy.c:858: for each function it appears in.)
> >>>> gbuffy.c:858: `height' undeclared (first use in this function)
> >>>> gbuffy.c:858: `horizontal' undeclared (first use in this
> >>>> function)
> >>>> gbuffy.c:858: `vertical' undeclared (first use in this function)
> >>>> make: *** [gbuffy.o] Error 1
> >>>>
> >>>>
> >>>> which looks to be this line
> >>>>
> >>>>
> >>>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF:
%d:%d\nYOFF: %d:%d\n",
> >>>> > width, height, horizontal.sign, horizontal.value,
vertical.sign,
> >>>> vertical.value);
> >>>>
> >>>> this is in
http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
> >>>>
> >>>> it also errors in
> >>>>
http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
> >>>> same place (which is a different line # )
> >>>>
> >>>> pointers?
> >>>>
> >>>>
> >>>>
> >>>> Brandon Long writes:
> >>>>
> >>>> > Just define DEBUG in the config.h file
> >>>> >
> >>>> > Brandon
> >>>> >
> >>>> > On 09/12/03 NetNut404 uttered the following other thing:
> >>>> >> ok, what option should be used for enableing debug ? I don't
> >>>> >> see it in the configure script.
> >>>> >>
> >>>> >> Brandon Long writes:
> >>>> >>
> >>>> >> > If you compile with debug enabled, ./gbuffy -d 5 should
log the entire
> >>>> >> > imap traffic to ~/.gbuffydebug, and then you should see
what command its
> >>>> >> > issuing to see whats in the folder, and what the response
is from the
> >>>> >> > imap server.
> >>>> >> >
> >>>> >> > Brandon
> >>>> >> >
> >>>> >> > On 09/11/03 moseley@h... uttered the following other thing:
> >>>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> >>>> >> >> > oops meant to say I have
> >>>> >> >> >
> >>>> >> >> > courier-imap-2.1.1.20030902-1.9
> >>>> >> >> >
> >>>> >> >> > (same thing) I can't figure why for the life of me it
does not work..
> >>>> >> >> > the passowrds work, and it authenticates, but it always
shows 0 not
> >>>> >> >> > sure why.
> >>>> >> >>
> >>>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
> >>>> >> >>
> >>>> >> >
> >>>> >> > --
> >>>> >> > "After two years and two kids, he realizes that hooking
up with an
> >>>> >> > unstable meth freak cum slut wasn't the ace decision it
seemed to be
> >>>> >> > in his candy coated dreams."
> >>>> >> >
http://www.plastic.com/article.html?sid=02/06/04/13303253#30
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
----------------------------------------------------------------
> >>>> >> | grant@s... http://www.stephenson.cc |
> >>>> >>
----------------------------------------------------------------
> >>>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp
> >>>> >> | |
> >>>> >>
----------------------------------------------------------------
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>> >>
> >>>> >
> >>>> > --
> >>>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
> >>>> >
http://www.fiction.net/blong/
> >>>> >
> >>>> > ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> >>>> > Upgrade to 128-Bit SSL Security!
> >>>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >>>> >
---------------------------------------------------------------------~->
> >>>> >
> >>>> >
> >>>> >
> >>>> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>> >
> >>>> >
> >>>>
> >>>>
> >>>>
> >>>> ----------------------------------------------------------------
> >>>> | grant@s... http://www.stephenson.cc |
> >>>> ----------------------------------------------------------------
> >>>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >>>>
----------------------------------------------------------------
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>>
> >>>
> >>> --
> >>> "If you're falling off a cliff, you might as well try to fly.
You've
> >>> got nothing to lose." -- Delenn
> >>>
http://www.fiction.net/blong/
> >>>
> >>> ------------------------ Yahoo! Groups Sponsor
> >>>
> >>>
> >>>
> >>> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>
> >>>
> >>
> >>
> >>
> >> ----------------------------------------------------------------
> >> | grant@s... http://www.stephenson.cc |
> >> ----------------------------------------------------------------
> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >> ----------------------------------------------------------------
> >>
> >>
> >> ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> >> Upgrade to 128-Bit SSL Security!
> >> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >>
---------------------------------------------------------------------~->
> >>
> >>
> >>
> >> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>
> >>
> >
> >
> >
> > ----------------------------------------------------------------
> > | grant@s... http://www.stephenson.cc |
> > ----------------------------------------------------------------
> > | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> > ----------------------------------------------------------------
> >
> >
> > ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> > Upgrade to 128-Bit SSL Security!
> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >
---------------------------------------------------------------------~->
> >
> >
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
>
>
>
> ----------------------------------------------------------------
> | grant@s... http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
On Sat, Oct 04, 2003 at 06:47:15AM +0000, R spake thusly:
> How does one get gbuffy to only show up for new messages? Right now,
> it shows all messages in the directory. I am using the MH format.
> Also, is it possible to change the font, color, etc?
>
> Thanks and best wishes1
I don't know about the display stuff for mh format, but for the fonts
and colours, it just uses the GTK theme. Change that, and gbuffy, and
all your other gtk programs will change together.
Note that gbuffy is still only a gtk 1 program, and most things now are
using gtk2 - the two toolkits have different themes, so for example, if
you change the theme using gnomecc from gnome 2, it won't affect gbuffy,
I believe.
Has anyone looked into updating gbuffy for gtk2? It'd be nice to have.
Maybe I'll do it when I have time, but that'll be a while from now.
--
Jon-o Addleman
Also, the mail messages in the monitor are not in order of arrival but
in the order in which they appear when you do a ls. Of course, this is
only an issue in the mh format.
Any ideas around this?
Thanks!
How does one get gbuffy to only show up for new messages? Right now,
it shows all messages in the directory. I am using the MH format.
Also, is it possible to change the font, color, etc?
Thanks and best wishes1
Hmm.. maybe that patch is bad. appears to make it not come up at all
if you *don't* specify -geometry.
On Fri, Sep 26, 2003 at 03:48:05PM -0500, Don Eisele did say:
>Somewhere in the middle of gbuffy_display, the HorizPos & VertPos are
>set from getting the current values of those.
>
>*then* later on, the positions are used to place the window.
>
>I'm not sure why this is, but moving the placement around will make
>-geometry placement work.
>
>
>--- gbuffy.c+ Fri Sep 26 15:10:25 2003
>+++ gbuffy.c Fri Sep 26 15:13:01 2003
>@@ -617,6 +617,14 @@
> gtk_signal_connect (GTK_OBJECT (MainWindow), "destroy",
> GTK_SIGNAL_FUNC (gbuffy_exit), NULL);
>
>+ if (!(HorizPos.sign != 0 && VertPos.sign != 0))
>+ return;
>+ new_horizontal = (HorizPos.sign == POSITIVE) ? HorizPos.value :
>+ ScrW - Width - HorizPos.value;
>+ new_vertical = (VertPos.sign == POSITIVE) ? VertPos.value :
>+ ScrH - Height - VertPos.value;
>+ gtk_widget_set_uposition(MainWindow, new_horizontal, new_vertical);
>+
> for (mbox = MailboxInfo; mbox; mbox = mbox->next)
> {
> box_count++;
>@@ -691,13 +699,6 @@
>
> PollId = gtk_timeout_add (PollTime * 1000, gbuffy_poll_boxes, NULL);
>
>- if (!(HorizPos.sign != 0 && VertPos.sign != 0))
>- return;
>- new_horizontal = (HorizPos.sign == POSITIVE) ? HorizPos.value :
>- ScrW - Width - HorizPos.value;
>- new_vertical = (VertPos.sign == POSITIVE) ? VertPos.value :
>- ScrH - Height - VertPos.value;
>- gdk_window_move(MainWindow->window, new_horizontal, new_vertical);
>
> }
>
>--
>Don Quixote -- quixote@...http://toysmakeuspowerful.com
> "I ought not to let my mind wander, as it's too small to go off by itself"
>WebSune Card search engine: http://toysmakeuspowerful.com/search
>Card auctions: http://imperialblock.com
>Surplus/Vintage Gaming stuff: http://toysmakeuspowerful.com/store
>
>
>
>
>Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
--
Don Quixote -- quixote@...http://toysmakeuspowerful.com
"I ought not to let my mind wander, as it's too small to go off by itself"
WebSune Card search engine: http://toysmakeuspowerful.com/search
Card auctions: http://imperialblock.com
Surplus/Vintage Gaming stuff: http://toysmakeuspowerful.com/store
I just had this problem too.
What I did to solve the problem was instead of this:
path = INBOX;
use this:
path = "\"INBOX\"";
(In the gui, put double quotes around inbox)
When the status is coming back from courier, it is putting
quotes around the inbox name, which gbuffy isn't parsing.
--- In gbuffy@yahoogroups.com, NetNut404 <netnut404@u...> wrote:
> more info...
>
> after sending a new mail to myself.. it says this in the debug log..
>
>
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> msocket_read_line_d():a0004 OK STATUS Completed.
> msocket_write():a0005 STATUS inbox (MESSAGES RECENT)^M
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
> msocket_read_line_d():a0005 OK STATUS Completed.
> msocket_write():a0006 STATUS inbox (MESSAGES RECENT)^M
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
>
> yet the number stays the same in gbuffy
>
>
>
> NetNut404 writes:
>
> > Oops I spoke too soon it did eventually write to the log after
leaving it
> > running for a while..
> >
> > it said
> > cat .gbuffydebug
> > msocket_read_line_d():* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN
NAMESPACE
> > THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS]
> > Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc.
See COPYING
> > for distribution information.
> > msocket_write():a0000 LOGIN "dauser" "password"
> > msocket_read_line_d():a0000 OK LOGIN Ok.
> > msocket_write():a0001 STATUS inbox (MESSAGES RECENT)
> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> > msocket_read_line_d():a0001 OK STATUS Completed.
> > msocket_write():a0002 STATUS inbox (MESSAGES RECENT)
> > msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> > msocket_read_line_d():a0002 OK STATUS Completed.
> >
> > so why does it always show 0 ?
> >
> >
> >
> > NetNut404 writes:
> >
> >> ok, that workd fo compiling, and now it took the -d 5 and said
> >>
> >> "-I- Debugging at level 5"
> >>
> >> but the debug file which was created remains 0 bytes even after
putting in
> >> the username and password both incorrectly, and correctly..
> >>
> >> ls -la .gbuffydebug
> >> -rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00
.gbuffydebug
> >>
> >> pointers?
> >>
> >>
> >> Brandon Long writes:
> >>
> >>> yeah, that's a known issue, just delete that call to g_print.
> >>>
> >>> Brandon
> >>>
> >>> On 09/13/03 NetNut404 uttered the following other thing:
> >>>> Hmm but when I do that it no longer compiles.. I get
> >>>>
> >>>> make
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
config.o config.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o
count.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o
from.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
> >>>> gbconfig.c
> >>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o
gbuffy.o gbuffy.c
> >>>> gbuffy.c: In function `main':
> >>>> gbuffy.c:858: `width' undeclared (first use in this function)
> >>>> gbuffy.c:858: (Each undeclared identifier is reported only once
> >>>> gbuffy.c:858: for each function it appears in.)
> >>>> gbuffy.c:858: `height' undeclared (first use in this function)
> >>>> gbuffy.c:858: `horizontal' undeclared (first use in this function)
> >>>> gbuffy.c:858: `vertical' undeclared (first use in this function)
> >>>> make: *** [gbuffy.o] Error 1
> >>>>
> >>>>
> >>>> which looks to be this line
> >>>>
> >>>>
> >>>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF:
%d:%d\nYOFF: %d:%d\n",
> >>>> > width, height, horizontal.sign, horizontal.value,
vertical.sign,
> >>>> vertical.value);
> >>>>
> >>>> this is in
http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
> >>>>
> >>>> it also errors in
> >>>>
http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
> >>>> same place (which is a different line # )
> >>>>
> >>>> pointers?
> >>>>
> >>>>
> >>>>
> >>>> Brandon Long writes:
> >>>>
> >>>> > Just define DEBUG in the config.h file
> >>>> >
> >>>> > Brandon
> >>>> >
> >>>> > On 09/12/03 NetNut404 uttered the following other thing:
> >>>> >> ok, what option should be used for enableing debug ?
> >>>> >> I don't see it in the configure script.
> >>>> >>
> >>>> >> Brandon Long writes:
> >>>> >>
> >>>> >> > If you compile with debug enabled, ./gbuffy -d 5 should
log the entire
> >>>> >> > imap traffic to ~/.gbuffydebug, and then you should see
what command its
> >>>> >> > issuing to see whats in the folder, and what the response
is from the
> >>>> >> > imap server.
> >>>> >> >
> >>>> >> > Brandon
> >>>> >> >
> >>>> >> > On 09/11/03 moseley@h... uttered the following other thing:
> >>>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> >>>> >> >> > oops meant to say I have
> >>>> >> >> >
> >>>> >> >> > courier-imap-2.1.1.20030902-1.9
> >>>> >> >> >
> >>>> >> >> > (same thing) I can't figure why for the life of me it
does not work..
> >>>> >> >> > the passowrds work, and it authenticates, but it always
shows 0 not
> >>>> >> >> > sure why.
> >>>> >> >>
> >>>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
> >>>> >> >>
> >>>> >> >
> >>>> >> > --
> >>>> >> > "After two years and two kids, he realizes that hooking
up with an
> >>>> >> > unstable meth freak cum slut wasn't the ace decision it
seemed to be
> >>>> >> > in his candy coated dreams."
> >>>> >> >
http://www.plastic.com/article.html?sid=02/06/04/13303253#30
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
----------------------------------------------------------------
> >>>> >> | grant@s... http://www.stephenson.cc |
> >>>> >>
----------------------------------------------------------------
> >>>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >>>> >>
----------------------------------------------------------------
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>> >>
> >>>> >
> >>>> > --
> >>>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
> >>>> >
http://www.fiction.net/blong/
> >>>> >
> >>>> > ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> >>>> > Upgrade to 128-Bit SSL Security!
> >>>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >>>> >
---------------------------------------------------------------------~->
> >>>> >
> >>>> >
> >>>> >
> >>>> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>> >
> >>>> >
> >>>>
> >>>>
> >>>>
> >>>> ----------------------------------------------------------------
> >>>> | grant@s... http://www.stephenson.cc |
> >>>> ----------------------------------------------------------------
> >>>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >>>>
----------------------------------------------------------------
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>>
> >>>
> >>> --
> >>> "If you're falling off a cliff, you might as well try to fly.
You've
> >>> got nothing to lose." -- Delenn
> >>>
http://www.fiction.net/blong/
> >>>
> >>> ------------------------ Yahoo! Groups Sponsor
> >>>
> >>>
> >>>
> >>> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>>
> >>>
> >>
> >>
> >>
> >> ----------------------------------------------------------------
> >> | grant@s... http://www.stephenson.cc |
> >> ----------------------------------------------------------------
> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >> ----------------------------------------------------------------
> >>
> >>
> >> ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> >> Upgrade to 128-Bit SSL Security!
> >> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >>
---------------------------------------------------------------------~->
> >>
> >>
> >>
> >> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >>
> >>
> >
> >
> >
> > ----------------------------------------------------------------
> > | grant@s... http://www.stephenson.cc |
> > ----------------------------------------------------------------
> > | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> > ----------------------------------------------------------------
> >
> >
> > ------------------------ Yahoo! Groups Sponsor
---------------------~-->
> > Upgrade to 128-Bit SSL Security!
> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> >
---------------------------------------------------------------------~->
> >
> >
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
>
>
>
> ----------------------------------------------------------------
> | grant@s... http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
more info...
after sending a new mail to myself.. it says this in the debug log..
msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
msocket_read_line_d():a0004 OK STATUS Completed.
msocket_write():a0005 STATUS inbox (MESSAGES RECENT)^M
msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
msocket_read_line_d():a0005 OK STATUS Completed.
msocket_write():a0006 STATUS inbox (MESSAGES RECENT)^M
msocket_read_line_d():* STATUS "inbox" (MESSAGES 103 RECENT 1)
yet the number stays the same in gbuffy
NetNut404 writes:
> Oops I spoke too soon it did eventually write to the log after leaving it
> running for a while..
>
> it said
> cat .gbuffydebug
> msocket_read_line_d():* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE
> THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS]
> Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc. See COPYING
> for distribution information.
> msocket_write():a0000 LOGIN "dauser" "password"
> msocket_read_line_d():a0000 OK LOGIN Ok.
> msocket_write():a0001 STATUS inbox (MESSAGES RECENT)
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> msocket_read_line_d():a0001 OK STATUS Completed.
> msocket_write():a0002 STATUS inbox (MESSAGES RECENT)
> msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
> msocket_read_line_d():a0002 OK STATUS Completed.
>
> so why does it always show 0 ?
>
>
>
> NetNut404 writes:
>
>> ok, that workd fo compiling, and now it took the -d 5 and said
>>
>> "-I- Debugging at level 5"
>>
>> but the debug file which was created remains 0 bytes even after putting in
>> the username and password both incorrectly, and correctly..
>>
>> ls -la .gbuffydebug
>> -rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00 .gbuffydebug
>>
>> pointers?
>>
>>
>> Brandon Long writes:
>>
>>> yeah, that's a known issue, just delete that call to g_print.
>>>
>>> Brandon
>>>
>>> On 09/13/03 NetNut404 uttered the following other thing:
>>>> Hmm but when I do that it no longer compiles.. I get
>>>>
>>>> make
>>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o config.o config.c
>>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o count.c
>>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o from.c
>>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
>>>> gbconfig.c
>>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbuffy.o gbuffy.c
>>>> gbuffy.c: In function `main':
>>>> gbuffy.c:858: `width' undeclared (first use in this function)
>>>> gbuffy.c:858: (Each undeclared identifier is reported only once
>>>> gbuffy.c:858: for each function it appears in.)
>>>> gbuffy.c:858: `height' undeclared (first use in this function)
>>>> gbuffy.c:858: `horizontal' undeclared (first use in this function)
>>>> gbuffy.c:858: `vertical' undeclared (first use in this function)
>>>> make: *** [gbuffy.o] Error 1
>>>>
>>>>
>>>> which looks to be this line
>>>>
>>>>
>>>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
>>>> > width, height, horizontal.sign, horizontal.value, vertical.sign,
>>>> vertical.value);
>>>>
>>>> this is in http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
>>>>
>>>> it also errors in
>>>> http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
>>>> same place (which is a different line # )
>>>>
>>>> pointers?
>>>>
>>>>
>>>>
>>>> Brandon Long writes:
>>>>
>>>> > Just define DEBUG in the config.h file
>>>> >
>>>> > Brandon
>>>> >
>>>> > On 09/12/03 NetNut404 uttered the following other thing:
>>>> >> ok, what option should be used for enableing debug ?
>>>> >> I don't see it in the configure script.
>>>> >>
>>>> >> Brandon Long writes:
>>>> >>
>>>> >> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
>>>> >> > imap traffic to ~/.gbuffydebug, and then you should see what command
its
>>>> >> > issuing to see whats in the folder, and what the response is from the
>>>> >> > imap server.
>>>> >> >
>>>> >> > Brandon
>>>> >> >
>>>> >> > On 09/11/03 moseley@... uttered the following other thing:
>>>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>>>> >> >> > oops meant to say I have
>>>> >> >> >
>>>> >> >> > courier-imap-2.1.1.20030902-1.9
>>>> >> >> >
>>>> >> >> > (same thing) I can't figure why for the life of me it does not
work..
>>>> >> >> > the passowrds work, and it authenticates, but it always shows 0
not
>>>> >> >> > sure why.
>>>> >> >>
>>>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
>>>> >> >>
>>>> >> >
>>>> >> > --
>>>> >> > "After two years and two kids, he realizes that hooking up with an
>>>> >> > unstable meth freak cum slut wasn't the ace decision it seemed to
be
>>>> >> > in his candy coated dreams."
>>>> >> >
http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>>>> >>
>>>> >>
>>>> >>
>>>> >> ----------------------------------------------------------------
>>>> >> | grant@...http://www.stephenson.cc |
>>>> >> ----------------------------------------------------------------
>>>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>>>> >> ----------------------------------------------------------------
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
>>>> >>
>>>> >
>>>> > --
>>>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
>>>> > http://www.fiction.net/blong/
>>>> >
>>>> > ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>>>> > Upgrade to 128-Bit SSL Security!
>>>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>>>> > ---------------------------------------------------------------------~->
>>>> >
>>>> >
>>>> >
>>>> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>>> >
>>>> >
>>>>
>>>>
>>>>
>>>> ----------------------------------------------------------------
>>>> | grant@...http://www.stephenson.cc |
>>>> ----------------------------------------------------------------
>>>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>>>> ----------------------------------------------------------------
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>>>
>>>
>>> --
>>> "If you're falling off a cliff, you might as well try to fly. You've
>>> got nothing to lose." -- Delenn
>>> http://www.fiction.net/blong/
>>>
>>> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>>> Upgrade to 128-Bit SSL Security!
>>> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>>> ---------------------------------------------------------------------~->
>>>
>>>
>>>
>>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>>
>>>
>>
>>
>>
>> ----------------------------------------------------------------
>> | grant@...http://www.stephenson.cc |
>> ----------------------------------------------------------------
>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> ----------------------------------------------------------------
>>
>>
>> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>> Upgrade to 128-Bit SSL Security!
>> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> ---------------------------------------------------------------------~->
>>
>>
>>
>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>
>>
>
>
>
> ----------------------------------------------------------------
> | grant@...http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
>
>
> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
> Upgrade to 128-Bit SSL Security!
> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> ---------------------------------------------------------------------~->
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
----------------------------------------------------------------
| grant@...http://www.stephenson.cc |
----------------------------------------------------------------
| My pgp key is available @ http://www.grant.stephenson.cc/pgp |
----------------------------------------------------------------
Oops I spoke too soon it did eventually write to the log after leaving it
running for a while..
it said
cat .gbuffydebug
msocket_read_line_d():* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE
THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS]
Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc. See COPYING
for distribution information.
msocket_write():a0000 LOGIN "dauser" "password"
msocket_read_line_d():a0000 OK LOGIN Ok.
msocket_write():a0001 STATUS inbox (MESSAGES RECENT)
msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
msocket_read_line_d():a0001 OK STATUS Completed.
msocket_write():a0002 STATUS inbox (MESSAGES RECENT)
msocket_read_line_d():* STATUS "inbox" (MESSAGES 102 RECENT 0)
msocket_read_line_d():a0002 OK STATUS Completed.
so why does it always show 0 ?
NetNut404 writes:
> ok, that workd fo compiling, and now it took the -d 5 and said
>
> "-I- Debugging at level 5"
>
> but the debug file which was created remains 0 bytes even after putting in
> the username and password both incorrectly, and correctly..
>
> ls -la .gbuffydebug
> -rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00 .gbuffydebug
>
> pointers?
>
>
> Brandon Long writes:
>
>> yeah, that's a known issue, just delete that call to g_print.
>>
>> Brandon
>>
>> On 09/13/03 NetNut404 uttered the following other thing:
>>> Hmm but when I do that it no longer compiles.. I get
>>>
>>> make
>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o config.o config.c
>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o count.c
>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o from.c
>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
>>> gbconfig.c
>>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbuffy.o gbuffy.c
>>> gbuffy.c: In function `main':
>>> gbuffy.c:858: `width' undeclared (first use in this function)
>>> gbuffy.c:858: (Each undeclared identifier is reported only once
>>> gbuffy.c:858: for each function it appears in.)
>>> gbuffy.c:858: `height' undeclared (first use in this function)
>>> gbuffy.c:858: `horizontal' undeclared (first use in this function)
>>> gbuffy.c:858: `vertical' undeclared (first use in this function)
>>> make: *** [gbuffy.o] Error 1
>>>
>>>
>>> which looks to be this line
>>>
>>>
>>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
>>> > width, height, horizontal.sign, horizontal.value, vertical.sign,
>>> vertical.value);
>>>
>>> this is in http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
>>>
>>> it also errors in
>>> http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
>>> same place (which is a different line # )
>>>
>>> pointers?
>>>
>>>
>>>
>>> Brandon Long writes:
>>>
>>> > Just define DEBUG in the config.h file
>>> >
>>> > Brandon
>>> >
>>> > On 09/12/03 NetNut404 uttered the following other thing:
>>> >> ok, what option should be used for enableing debug ?
>>> >> I don't see it in the configure script.
>>> >>
>>> >> Brandon Long writes:
>>> >>
>>> >> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
>>> >> > imap traffic to ~/.gbuffydebug, and then you should see what command
its
>>> >> > issuing to see whats in the folder, and what the response is from the
>>> >> > imap server.
>>> >> >
>>> >> > Brandon
>>> >> >
>>> >> > On 09/11/03 moseley@... uttered the following other thing:
>>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>>> >> >> > oops meant to say I have
>>> >> >> >
>>> >> >> > courier-imap-2.1.1.20030902-1.9
>>> >> >> >
>>> >> >> > (same thing) I can't figure why for the life of me it does not
work..
>>> >> >> > the passowrds work, and it authenticates, but it always shows 0 not
>>> >> >> > sure why.
>>> >> >>
>>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
>>> >> >>
>>> >> >
>>> >> > --
>>> >> > "After two years and two kids, he realizes that hooking up with an
>>> >> > unstable meth freak cum slut wasn't the ace decision it seemed to be
>>> >> > in his candy coated dreams."
>>> >> > http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>>> >>
>>> >>
>>> >>
>>> >> ----------------------------------------------------------------
>>> >> | grant@...http://www.stephenson.cc |
>>> >> ----------------------------------------------------------------
>>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>>> >> ----------------------------------------------------------------
>>> >>
>>> >>
>>> >>
>>> >>
>>> >>
>>> >> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>> >>
>>> >
>>> > --
>>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
>>> > http://www.fiction.net/blong/
>>> >
>>> > ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>>> > Upgrade to 128-Bit SSL Security!
>>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>>> > ---------------------------------------------------------------------~->
>>> >
>>> >
>>> >
>>> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>> >
>>> >
>>>
>>>
>>>
>>> ----------------------------------------------------------------
>>> | grant@...http://www.stephenson.cc |
>>> ----------------------------------------------------------------
>>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>>> ----------------------------------------------------------------
>>>
>>>
>>>
>>>
>>>
>>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>>
>>
>> --
>> "If you're falling off a cliff, you might as well try to fly. You've
>> got nothing to lose." -- Delenn
>> http://www.fiction.net/blong/
>>
>> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>> Upgrade to 128-Bit SSL Security!
>> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> ---------------------------------------------------------------------~->
>>
>>
>>
>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>
>>
>
>
>
> ----------------------------------------------------------------
> | grant@...http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
>
>
> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
> Upgrade to 128-Bit SSL Security!
> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> ---------------------------------------------------------------------~->
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
----------------------------------------------------------------
| grant@...http://www.stephenson.cc |
----------------------------------------------------------------
| My pgp key is available @ http://www.grant.stephenson.cc/pgp |
----------------------------------------------------------------
ok, that workd fo compiling, and now it took the -d 5 and said
"-I- Debugging at level 5"
but the debug file which was created remains 0 bytes even after putting in
the username and password both incorrectly, and correctly..
ls -la .gbuffydebug
-rw-rw-r-- 1 dauser dauser 0 Sep 13 23:00 .gbuffydebug
pointers?
Brandon Long writes:
> yeah, that's a known issue, just delete that call to g_print.
>
> Brandon
>
> On 09/13/03 NetNut404 uttered the following other thing:
>> Hmm but when I do that it no longer compiles.. I get
>>
>> make
>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o config.o config.c
>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o count.c
>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o from.c
>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
>> gbconfig.c
>> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbuffy.o gbuffy.c
>> gbuffy.c: In function `main':
>> gbuffy.c:858: `width' undeclared (first use in this function)
>> gbuffy.c:858: (Each undeclared identifier is reported only once
>> gbuffy.c:858: for each function it appears in.)
>> gbuffy.c:858: `height' undeclared (first use in this function)
>> gbuffy.c:858: `horizontal' undeclared (first use in this function)
>> gbuffy.c:858: `vertical' undeclared (first use in this function)
>> make: *** [gbuffy.o] Error 1
>>
>>
>> which looks to be this line
>>
>>
>> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
>> > width, height, horizontal.sign, horizontal.value, vertical.sign,
>> vertical.value);
>>
>> this is in http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
>>
>> it also errors in
>> http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
>> same place (which is a different line # )
>>
>> pointers?
>>
>>
>>
>> Brandon Long writes:
>>
>> > Just define DEBUG in the config.h file
>> >
>> > Brandon
>> >
>> > On 09/12/03 NetNut404 uttered the following other thing:
>> >> ok, what option should be used for enableing debug ?
>> >> I don't see it in the configure script.
>> >>
>> >> Brandon Long writes:
>> >>
>> >> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
>> >> > imap traffic to ~/.gbuffydebug, and then you should see what command its
>> >> > issuing to see whats in the folder, and what the response is from the
>> >> > imap server.
>> >> >
>> >> > Brandon
>> >> >
>> >> > On 09/11/03 moseley@... uttered the following other thing:
>> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>> >> >> > oops meant to say I have
>> >> >> >
>> >> >> > courier-imap-2.1.1.20030902-1.9
>> >> >> >
>> >> >> > (same thing) I can't figure why for the life of me it does not
work..
>> >> >> > the passowrds work, and it authenticates, but it always shows 0 not
>> >> >> > sure why.
>> >> >>
>> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
>> >> >>
>> >> >
>> >> > --
>> >> > "After two years and two kids, he realizes that hooking up with an
>> >> > unstable meth freak cum slut wasn't the ace decision it seemed to be
>> >> > in his candy coated dreams."
>> >> > http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>> >>
>> >>
>> >>
>> >> ----------------------------------------------------------------
>> >> | grant@...http://www.stephenson.cc |
>> >> ----------------------------------------------------------------
>> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> >> ----------------------------------------------------------------
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>> >>
>> >
>> > --
>> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
>> > http://www.fiction.net/blong/
>> >
>> > ------------------------ Yahoo! Groups Sponsor ---------------------~-->
>> > Upgrade to 128-Bit SSL Security!
>> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
>> > ---------------------------------------------------------------------~->
>> >
>> >
>> >
>> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>> >
>> >
>>
>>
>>
>> ----------------------------------------------------------------
>> | grant@...http://www.stephenson.cc |
>> ----------------------------------------------------------------
>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> ----------------------------------------------------------------
>>
>>
>>
>>
>>
>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>
>
> --
> "If you're falling off a cliff, you might as well try to fly. You've
> got nothing to lose." -- Delenn
> http://www.fiction.net/blong/
>
> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
> Upgrade to 128-Bit SSL Security!
> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> ---------------------------------------------------------------------~->
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
----------------------------------------------------------------
| grant@...http://www.stephenson.cc |
----------------------------------------------------------------
| My pgp key is available @ http://www.grant.stephenson.cc/pgp |
----------------------------------------------------------------
yeah, that's a known issue, just delete that call to g_print.
Brandon
On 09/13/03 NetNut404 uttered the following other thing:
> Hmm but when I do that it no longer compiles.. I get
>
> make
> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o config.o config.c
> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o count.c
> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o from.c
> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
> gbconfig.c
> gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbuffy.o gbuffy.c
> gbuffy.c: In function `main':
> gbuffy.c:858: `width' undeclared (first use in this function)
> gbuffy.c:858: (Each undeclared identifier is reported only once
> gbuffy.c:858: for each function it appears in.)
> gbuffy.c:858: `height' undeclared (first use in this function)
> gbuffy.c:858: `horizontal' undeclared (first use in this function)
> gbuffy.c:858: `vertical' undeclared (first use in this function)
> make: *** [gbuffy.o] Error 1
>
>
> which looks to be this line
>
>
> g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
> > width, height, horizontal.sign, horizontal.value, vertical.sign,
> vertical.value);
>
> this is in http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
>
> it also errors in
> http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
> same place (which is a different line # )
>
> pointers?
>
>
>
> Brandon Long writes:
>
> > Just define DEBUG in the config.h file
> >
> > Brandon
> >
> > On 09/12/03 NetNut404 uttered the following other thing:
> >> ok, what option should be used for enableing debug ?
> >> I don't see it in the configure script.
> >>
> >> Brandon Long writes:
> >>
> >> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
> >> > imap traffic to ~/.gbuffydebug, and then you should see what command its
> >> > issuing to see whats in the folder, and what the response is from the
> >> > imap server.
> >> >
> >> > Brandon
> >> >
> >> > On 09/11/03 moseley@... uttered the following other thing:
> >> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> >> >> > oops meant to say I have
> >> >> >
> >> >> > courier-imap-2.1.1.20030902-1.9
> >> >> >
> >> >> > (same thing) I can't figure why for the life of me it does not work..
> >> >> > the passowrds work, and it authenticates, but it always shows 0 not
> >> >> > sure why.
> >> >>
> >> >> printf() and gdb are the path to enlightenment, I'm afraid.
> >> >>
> >> >
> >> > --
> >> > "After two years and two kids, he realizes that hooking up with an
> >> > unstable meth freak cum slut wasn't the ace decision it seemed to be
> >> > in his candy coated dreams."
> >> > http://www.plastic.com/article.html?sid=02/06/04/13303253#30
> >>
> >>
> >>
> >> ----------------------------------------------------------------
> >> | grant@...http://www.stephenson.cc |
> >> ----------------------------------------------------------------
> >> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> >> ----------------------------------------------------------------
> >>
> >>
> >>
> >>
> >>
> >> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> >>
> >
> > --
> > "I see. So the T1000 is a lesbian." -- Newob Det, ASC
> > http://www.fiction.net/blong/
> >
> > ------------------------ Yahoo! Groups Sponsor ---------------------~-->
> > Upgrade to 128-Bit SSL Security!
> > http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> > ---------------------------------------------------------------------~->
> >
> >
> >
> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> >
> >
>
>
>
> ----------------------------------------------------------------
> | grant@...http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
--
"If you're falling off a cliff, you might as well try to fly. You've
got nothing to lose." -- Delenn
http://www.fiction.net/blong/
Hmm but when I do that it no longer compiles.. I get
make
gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o config.o config.c
gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o count.o count.c
gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o from.o from.c
gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbconfig.o
gbconfig.c
gcc -g -O2 -I. `/usr/bin/gtk-config --cflags` -c -o gbuffy.o gbuffy.c
gbuffy.c: In function `main':
gbuffy.c:858: `width' undeclared (first use in this function)
gbuffy.c:858: (Each undeclared identifier is reported only once
gbuffy.c:858: for each function it appears in.)
gbuffy.c:858: `height' undeclared (first use in this function)
gbuffy.c:858: `horizontal' undeclared (first use in this function)
gbuffy.c:858: `vertical' undeclared (first use in this function)
make: *** [gbuffy.o] Error 1
which looks to be this line
g_print("Will set:\nWidth: %d\nHeight: %d\nXOFF: %d:%d\nYOFF: %d:%d\n",
> width, height, horizontal.sign, horizontal.value, vertical.sign,
vertical.value);
this is in http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.5.tar.gz
it also errors in
http://www.fiction.net/blong/programs/gbuffy/gbuffy-0.2.4.tar.gz at the
same place (which is a different line # )
pointers?
Brandon Long writes:
> Just define DEBUG in the config.h file
>
> Brandon
>
> On 09/12/03 NetNut404 uttered the following other thing:
>> ok, what option should be used for enableing debug ?
>> I don't see it in the configure script.
>>
>> Brandon Long writes:
>>
>> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
>> > imap traffic to ~/.gbuffydebug, and then you should see what command its
>> > issuing to see whats in the folder, and what the response is from the
>> > imap server.
>> >
>> > Brandon
>> >
>> > On 09/11/03 moseley@... uttered the following other thing:
>> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>> >> > oops meant to say I have
>> >> >
>> >> > courier-imap-2.1.1.20030902-1.9
>> >> >
>> >> > (same thing) I can't figure why for the life of me it does not work..
>> >> > the passowrds work, and it authenticates, but it always shows 0 not
>> >> > sure why.
>> >>
>> >> printf() and gdb are the path to enlightenment, I'm afraid.
>> >>
>> >
>> > --
>> > "After two years and two kids, he realizes that hooking up with an
>> > unstable meth freak cum slut wasn't the ace decision it seemed to be
>> > in his candy coated dreams."
>> > http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>>
>>
>>
>> ----------------------------------------------------------------
>> | grant@...http://www.stephenson.cc |
>> ----------------------------------------------------------------
>> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
>> ----------------------------------------------------------------
>>
>>
>>
>>
>>
>> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>>
>
> --
> "I see. So the T1000 is a lesbian." -- Newob Det, ASC
> http://www.fiction.net/blong/
>
> ------------------------ Yahoo! Groups Sponsor ---------------------~-->
> Upgrade to 128-Bit SSL Security!
> http://us.click.yahoo.com/p7cEmB/s7qGAA/yigFAA/W4wwlB/TM
> ---------------------------------------------------------------------~->
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
----------------------------------------------------------------
| grant@...http://www.stephenson.cc |
----------------------------------------------------------------
| My pgp key is available @ http://www.grant.stephenson.cc/pgp |
----------------------------------------------------------------
Just define DEBUG in the config.h file
Brandon
On 09/12/03 NetNut404 uttered the following other thing:
> ok, what option should be used for enableing debug ?
> I don't see it in the configure script.
>
> Brandon Long writes:
>
> > If you compile with debug enabled, ./gbuffy -d 5 should log the entire
> > imap traffic to ~/.gbuffydebug, and then you should see what command its
> > issuing to see whats in the folder, and what the response is from the
> > imap server.
> >
> > Brandon
> >
> > On 09/11/03 moseley@... uttered the following other thing:
> >> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> >> > oops meant to say I have
> >> >
> >> > courier-imap-2.1.1.20030902-1.9
> >> >
> >> > (same thing) I can't figure why for the life of me it does not work..
> >> > the passowrds work, and it authenticates, but it always shows 0 not
> >> > sure why.
> >>
> >> printf() and gdb are the path to enlightenment, I'm afraid.
> >>
> >
> > --
> > "After two years and two kids, he realizes that hooking up with an
> > unstable meth freak cum slut wasn't the ace decision it seemed to be
> > in his candy coated dreams."
> > http://www.plastic.com/article.html?sid=02/06/04/13303253#30
>
>
>
> ----------------------------------------------------------------
> | grant@...http://www.stephenson.cc |
> ----------------------------------------------------------------
> | My pgp key is available @ http://www.grant.stephenson.cc/pgp |
> ----------------------------------------------------------------
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
--
"I see. So the T1000 is a lesbian." -- Newob Det, ASC
http://www.fiction.net/blong/
ok, what option should be used for enableing debug ?
I don't see it in the configure script.
Brandon Long writes:
> If you compile with debug enabled, ./gbuffy -d 5 should log the entire
> imap traffic to ~/.gbuffydebug, and then you should see what command its
> issuing to see whats in the folder, and what the response is from the
> imap server.
>
> Brandon
>
> On 09/11/03 moseley@... uttered the following other thing:
>> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
>> > oops meant to say I have
>> >
>> > courier-imap-2.1.1.20030902-1.9
>> >
>> > (same thing) I can't figure why for the life of me it does not work..
>> > the passowrds work, and it authenticates, but it always shows 0 not
>> > sure why.
>>
>> printf() and gdb are the path to enlightenment, I'm afraid.
>>
>
> --
> "After two years and two kids, he realizes that hooking up with an
> unstable meth freak cum slut wasn't the ace decision it seemed to be
> in his candy coated dreams."
> http://www.plastic.com/article.html?sid=02/06/04/13303253#30
----------------------------------------------------------------
| grant@...http://www.stephenson.cc |
----------------------------------------------------------------
| My pgp key is available @ http://www.grant.stephenson.cc/pgp |
----------------------------------------------------------------
If you compile with debug enabled, ./gbuffy -d 5 should log the entire
imap traffic to ~/.gbuffydebug, and then you should see what command its
issuing to see whats in the folder, and what the response is from the
imap server.
Brandon
On 09/11/03 moseley@... uttered the following other thing:
> On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> > oops meant to say I have
> >
> > courier-imap-2.1.1.20030902-1.9
> >
> > (same thing) I can't figure why for the life of me it does not work..
> > the passowrds work, and it authenticates, but it always shows 0 not
> > sure why.
>
> printf() and gdb are the path to enlightenment, I'm afraid.
>
--
"After two years and two kids, he realizes that hooking up with an
unstable meth freak cum slut wasn't the ace decision it seemed to be
in his candy coated dreams."
http://www.plastic.com/article.html?sid=02/06/04/13303253#30
On Fri, Sep 12, 2003 at 06:00:06AM -0000, netnut404 wrote:
> oops meant to say I have
>
> courier-imap-2.1.1.20030902-1.9
>
> (same thing) I can't figure why for the life of me it does not work..
> the passowrds work, and it authenticates, but it always shows 0 not
> sure why.
printf() and gdb are the path to enlightenment, I'm afraid.
--
Bill Moseley
moseley@...
oops meant to say I have
courier-imap-2.1.1.20030902-1.9
(same thing) I can't figure why for the life of me it does not work..
the passowrds work, and it authenticates, but it always shows 0 not
sure why.
--- In gbuffy@yahoogroups.com, "netnut404" <netnut404@u...> wrote:
> so what version of courier imap do you have?
>
> the one I have that is not working with gbuffy is
>
> courier-imap-ldap-2.1.1.20030902-1.9
>
>
>
> --- In gbuffy@yahoogroups.com, Bill Moseley <moseley@h...> wrote:
> > On Tue, Jul 22, 2003 at 12:13:34PM -0700, Grant Stephenson wrote:
> > >
> > > Hmm.. Well thanks for the post, but I get the same results.. I am
> running
> > > this on a redhat 8.0 machine (but have had the same results on
several
> > > redhat versions.) I have compiled, or run the precompiled
> binaries.. Always
> > > the same results..
> >
> > Sometimes watching the output of strace will give clues.
> >
> > For example:
> >
> > $ strace -p 966 -e trace=read,write -s 100
> > write(4, "a51472 STATUS inbox.lists.debian-user (MESSAGES
> RECENT)\r\n", 57) = 57
> > read(4, "* STATUS \"inbox.lists.debian-user\" (MESSAGES 2556 RECENT
> 2)\r\na51472 OK STATUS Completed.\r\n", 1023) = 90
> >
> > I do not know the imap protocol, but...
> >
> > So gbuffy has pid 966 and I can see it request STATUS for debian-user
> > list, and it returns the "2" new messages which are currently shown on
> > the gbuffy window.
> >
> > If yours is not working at all I'd try
> >
> > strace gbuffy -e trace=read,write -s 100
> >
> > and then you might see what is failing.
> >
> > Don't know if this will help or not.
> >
> > Good luck.
> >
> >
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: Bill Moseley [mailto:moseley@h...]
> > > Sent: Monday, July 21, 2003 2:53 PM
> > > To: Net Nut
> > > Cc: gbuffy@yahoogroups.com
> > > Subject: Re: still having trouble using this on a with courier
> imap server
> > >
> > >
> > > On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> > > > Hello, I have been trying to get gbuffy to work from time to
time
> > > > (off, and
> > > > on) against my courier imap server, but the boxes always show up
> with zero
> > > > mail in it. At the same time when I setup mailboxes on a
> exchange server
> > > it
> > > > notifies fine.
> > > >
> > > > Any pointers?
> > >
> > > I'm using Courier with this setup:
> > >
> > > {
> > > mailboxes = (
> > > {
> > > type = imap;
> > > title = inbox;
> > > path = inbox;
> > > command = "xterm -e mutt -f =INBOX";
> > > server = imapmail;
> > > port = 143;
> > > login = moseley;
> > > },
> > >
> > > [more of the same]
> > > );
> > > vertical = false;
> > > polltime = 10;
> > > rows = 1;
> > > maildir = "/home/moseley/Mail";
> > > }
> > >
> > > It kind of works -- often it doesn't update the mail counts until I
> > > click on the buttons. I can't get it to show a summary of my
> subjects,
> > > either.
> > >
> > >
> > >
> > > --
> > > Bill Moseley
> > > moseley@h...
> > >
> > >
> >
> > --
> > Bill Moseley
> > moseley@h...
On Fri, Sep 12, 2003 at 05:48:51AM -0000, netnut404 wrote:
> so what version of courier imap do you have?
Well, here's my Debian Stable packages. A bit behind the current
Courier version.
moseley@mardy:~$ dpkg -l | grep courier
ii courier-authda 0.37.3-2.3 Courier Mail Server authentication daemon
ii courier-base 0.37.3-2.3 Courier Mail Server Base System
ii courier-imap 1.4.3-2.3 IMAP daemon with PAM and Maildir support
ii courier-imap-s 1.4.3-3.3 IMAP daemon with SSL, PAM and Maildir suppor
ii courier-ssl 0.37.3-3.3 Courier Mail Server SSL Package
>
> the one I have that is not working with gbuffy is
>
> courier-imap-ldap-2.1.1.20030902-1.9
>
>
>
> --- In gbuffy@yahoogroups.com, Bill Moseley <moseley@h...> wrote:
> > On Tue, Jul 22, 2003 at 12:13:34PM -0700, Grant Stephenson wrote:
> > >
> > > Hmm.. Well thanks for the post, but I get the same results.. I am
> running
> > > this on a redhat 8.0 machine (but have had the same results on several
> > > redhat versions.) I have compiled, or run the precompiled
> binaries.. Always
> > > the same results..
> >
> > Sometimes watching the output of strace will give clues.
> >
> > For example:
> >
> > $ strace -p 966 -e trace=read,write -s 100
> > write(4, "a51472 STATUS inbox.lists.debian-user (MESSAGES
> RECENT)\r\n", 57) = 57
> > read(4, "* STATUS \"inbox.lists.debian-user\" (MESSAGES 2556 RECENT
> 2)\r\na51472 OK STATUS Completed.\r\n", 1023) = 90
> >
> > I do not know the imap protocol, but...
> >
> > So gbuffy has pid 966 and I can see it request STATUS for debian-user
> > list, and it returns the "2" new messages which are currently shown on
> > the gbuffy window.
> >
> > If yours is not working at all I'd try
> >
> > strace gbuffy -e trace=read,write -s 100
> >
> > and then you might see what is failing.
> >
> > Don't know if this will help or not.
> >
> > Good luck.
> >
> >
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: Bill Moseley [mailto:moseley@h...]
> > > Sent: Monday, July 21, 2003 2:53 PM
> > > To: Net Nut
> > > Cc: gbuffy@yahoogroups.com
> > > Subject: Re: still having trouble using this on a with courier
> imap server
> > >
> > >
> > > On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> > > > Hello, I have been trying to get gbuffy to work from time to time
> > > > (off, and
> > > > on) against my courier imap server, but the boxes always show up
> with zero
> > > > mail in it. At the same time when I setup mailboxes on a
> exchange server
> > > it
> > > > notifies fine.
> > > >
> > > > Any pointers?
> > >
> > > I'm using Courier with this setup:
> > >
> > > {
> > > mailboxes = (
> > > {
> > > type = imap;
> > > title = inbox;
> > > path = inbox;
> > > command = "xterm -e mutt -f =INBOX";
> > > server = imapmail;
> > > port = 143;
> > > login = moseley;
> > > },
> > >
> > > [more of the same]
> > > );
> > > vertical = false;
> > > polltime = 10;
> > > rows = 1;
> > > maildir = "/home/moseley/Mail";
> > > }
> > >
> > > It kind of works -- often it doesn't update the mail counts until I
> > > click on the buttons. I can't get it to show a summary of my
> subjects,
> > > either.
> > >
> > >
> > >
> > > --
> > > Bill Moseley
> > > moseley@h...
> > >
> > >
> >
> > --
> > Bill Moseley
> > moseley@h...
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
--
Bill Moseley
moseley@...
so what version of courier imap do you have?
the one I have that is not working with gbuffy is
courier-imap-ldap-2.1.1.20030902-1.9
--- In gbuffy@yahoogroups.com, Bill Moseley <moseley@h...> wrote:
> On Tue, Jul 22, 2003 at 12:13:34PM -0700, Grant Stephenson wrote:
> >
> > Hmm.. Well thanks for the post, but I get the same results.. I am
running
> > this on a redhat 8.0 machine (but have had the same results on several
> > redhat versions.) I have compiled, or run the precompiled
binaries.. Always
> > the same results..
>
> Sometimes watching the output of strace will give clues.
>
> For example:
>
> $ strace -p 966 -e trace=read,write -s 100
> write(4, "a51472 STATUS inbox.lists.debian-user (MESSAGES
RECENT)\r\n", 57) = 57
> read(4, "* STATUS \"inbox.lists.debian-user\" (MESSAGES 2556 RECENT
2)\r\na51472 OK STATUS Completed.\r\n", 1023) = 90
>
> I do not know the imap protocol, but...
>
> So gbuffy has pid 966 and I can see it request STATUS for debian-user
> list, and it returns the "2" new messages which are currently shown on
> the gbuffy window.
>
> If yours is not working at all I'd try
>
> strace gbuffy -e trace=read,write -s 100
>
> and then you might see what is failing.
>
> Don't know if this will help or not.
>
> Good luck.
>
>
> >
> >
> >
> > -----Original Message-----
> > From: Bill Moseley [mailto:moseley@h...]
> > Sent: Monday, July 21, 2003 2:53 PM
> > To: Net Nut
> > Cc: gbuffy@yahoogroups.com
> > Subject: Re: still having trouble using this on a with courier
imap server
> >
> >
> > On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> > > Hello, I have been trying to get gbuffy to work from time to time
> > > (off, and
> > > on) against my courier imap server, but the boxes always show up
with zero
> > > mail in it. At the same time when I setup mailboxes on a
exchange server
> > it
> > > notifies fine.
> > >
> > > Any pointers?
> >
> > I'm using Courier with this setup:
> >
> > {
> > mailboxes = (
> > {
> > type = imap;
> > title = inbox;
> > path = inbox;
> > command = "xterm -e mutt -f =INBOX";
> > server = imapmail;
> > port = 143;
> > login = moseley;
> > },
> >
> > [more of the same]
> > );
> > vertical = false;
> > polltime = 10;
> > rows = 1;
> > maildir = "/home/moseley/Mail";
> > }
> >
> > It kind of works -- often it doesn't update the mail counts until I
> > click on the buttons. I can't get it to show a summary of my
subjects,
> > either.
> >
> >
> >
> > --
> > Bill Moseley
> > moseley@h...
> >
> >
>
> --
> Bill Moseley
> moseley@h...
Well with that strace command "strace gbuffy -e trace=read,write -s 100" I
get screens and screens of data... And to clarify I wouldn't say it does
not work at all because I get the window, it just shows me 0 items.. Where
as when it connects to my exchange mailbox it works fine.
Grant Stephenson
Sr. Systems Administrator
Matrix Absence Management
1-800-980-1006 X271
FAX: 408-361-9072
Grant.Stephenson@...
-----Original Message-----
From: Bill Moseley [mailto:moseley@...]
Sent: Tuesday, July 22, 2003 12:32 PM
To: Grant Stephenson
Cc: gbuffy@yahoogroups.com
Subject: Re: still having trouble using this on a with courier imap server
On Tue, Jul 22, 2003 at 12:13:34PM -0700, Grant Stephenson wrote:
>
> Hmm.. Well thanks for the post, but I get the same results.. I am
> running this on a redhat 8.0 machine (but have had the same results on
> several redhat versions.) I have compiled, or run the precompiled
> binaries.. Always the same results..
Sometimes watching the output of strace will give clues.
For example:
$ strace -p 966 -e trace=read,write -s 100
write(4, "a51472 STATUS inbox.lists.debian-user (MESSAGES RECENT)\r\n", 57)
= 57 read(4, "* STATUS \"inbox.lists.debian-user\" (MESSAGES 2556 RECENT
2)\r\na51472 OK STATUS Completed.\r\n", 1023) = 90
I do not know the imap protocol, but...
So gbuffy has pid 966 and I can see it request STATUS for debian-user list,
and it returns the "2" new messages which are currently shown on the gbuffy
window.
If yours is not working at all I'd try
strace gbuffy -e trace=read,write -s 100
and then you might see what is failing.
Don't know if this will help or not.
Good luck.
>
>
>
> -----Original Message-----
> From: Bill Moseley [mailto:moseley@...]
> Sent: Monday, July 21, 2003 2:53 PM
> To: Net Nut
> Cc: gbuffy@yahoogroups.com
> Subject: Re: still having trouble using this on a with courier imap server
>
>
> On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> > Hello, I have been trying to get gbuffy to work from time to time
> > (off, and
> > on) against my courier imap server, but the boxes always show up with
zero
> > mail in it. At the same time when I setup mailboxes on a exchange
server
> it
> > notifies fine.
> >
> > Any pointers?
>
> I'm using Courier with this setup:
>
> {
> mailboxes = (
> {
> type = imap;
> title = inbox;
> path = inbox;
> command = "xterm -e mutt -f =INBOX";
> server = imapmail;
> port = 143;
> login = moseley;
> },
>
> [more of the same]
> );
> vertical = false;
> polltime = 10;
> rows = 1;
> maildir = "/home/moseley/Mail";
> }
>
> It kind of works -- often it doesn't update the mail counts until I
> click on the buttons. I can't get it to show a summary of my subjects,
> either.
>
>
>
> --
> Bill Moseley
> moseley@...
>
>
--
Bill Moseley
moseley@...
------------------------ Yahoo! Groups Sponsor ---------------------~--> Get
a FREE REFINANCE QUOTE - click here!
http://us.click.yahoo.com/nHYuCC/ca0FAA/ySSFAA/W4wwlB/TM
---------------------------------------------------------------------~->
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
On Tue, Jul 22, 2003 at 12:13:34PM -0700, Grant Stephenson wrote:
>
> Hmm.. Well thanks for the post, but I get the same results.. I am running
> this on a redhat 8.0 machine (but have had the same results on several
> redhat versions.) I have compiled, or run the precompiled binaries.. Always
> the same results..
Sometimes watching the output of strace will give clues.
For example:
$ strace -p 966 -e trace=read,write -s 100
write(4, "a51472 STATUS inbox.lists.debian-user (MESSAGES RECENT)\r\n", 57) = 57
read(4, "* STATUS \"inbox.lists.debian-user\" (MESSAGES 2556 RECENT 2)\r\na51472
OK STATUS Completed.\r\n", 1023) = 90
I do not know the imap protocol, but...
So gbuffy has pid 966 and I can see it request STATUS for debian-user
list, and it returns the "2" new messages which are currently shown on
the gbuffy window.
If yours is not working at all I'd try
strace gbuffy -e trace=read,write -s 100
and then you might see what is failing.
Don't know if this will help or not.
Good luck.
>
>
>
> -----Original Message-----
> From: Bill Moseley [mailto:moseley@...]
> Sent: Monday, July 21, 2003 2:53 PM
> To: Net Nut
> Cc: gbuffy@yahoogroups.com
> Subject: Re: still having trouble using this on a with courier imap server
>
>
> On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> > Hello, I have been trying to get gbuffy to work from time to time
> > (off, and
> > on) against my courier imap server, but the boxes always show up with zero
> > mail in it. At the same time when I setup mailboxes on a exchange server
> it
> > notifies fine.
> >
> > Any pointers?
>
> I'm using Courier with this setup:
>
> {
> mailboxes = (
> {
> type = imap;
> title = inbox;
> path = inbox;
> command = "xterm -e mutt -f =INBOX";
> server = imapmail;
> port = 143;
> login = moseley;
> },
>
> [more of the same]
> );
> vertical = false;
> polltime = 10;
> rows = 1;
> maildir = "/home/moseley/Mail";
> }
>
> It kind of works -- often it doesn't update the mail counts until I
> click on the buttons. I can't get it to show a summary of my subjects,
> either.
>
>
>
> --
> Bill Moseley
> moseley@...
>
>
--
Bill Moseley
moseley@...
Hmm.. Well thanks for the post, but I get the same results.. I am running
this on a redhat 8.0 machine (but have had the same results on several
redhat versions.) I have compiled, or run the precompiled binaries.. Always
the same results..
-----Original Message-----
From: Bill Moseley [mailto:moseley@...]
Sent: Monday, July 21, 2003 2:53 PM
To: Net Nut
Cc: gbuffy@yahoogroups.com
Subject: Re: still having trouble using this on a with courier imap server
On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> Hello, I have been trying to get gbuffy to work from time to time
> (off, and
> on) against my courier imap server, but the boxes always show up with zero
> mail in it. At the same time when I setup mailboxes on a exchange server
it
> notifies fine.
>
> Any pointers?
I'm using Courier with this setup:
{
mailboxes = (
{
type = imap;
title = inbox;
path = inbox;
command = "xterm -e mutt -f =INBOX";
server = imapmail;
port = 143;
login = moseley;
},
[more of the same]
);
vertical = false;
polltime = 10;
rows = 1;
maildir = "/home/moseley/Mail";
}
It kind of works -- often it doesn't update the mail counts until I
click on the buttons. I can't get it to show a summary of my subjects,
either.
--
Bill Moseley
moseley@...
On Mon, Jul 21, 2003 at 02:19:58PM -0700, Net Nut wrote:
> Hello, I have been trying to get gbuffy to work from time to time (off, and
> on) against my courier imap server, but the boxes always show up with zero
> mail in it. At the same time when I setup mailboxes on a exchange server it
> notifies fine.
>
> Any pointers?
I'm using Courier with this setup:
{
mailboxes = (
{
type = imap;
title = inbox;
path = inbox;
command = "xterm -e mutt -f =INBOX";
server = imapmail;
port = 143;
login = moseley;
},
[more of the same]
);
vertical = false;
polltime = 10;
rows = 1;
maildir = "/home/moseley/Mail";
}
It kind of works -- often it doesn't update the mail counts until I
click on the buttons. I can't get it to show a summary of my subjects,
either.
--
Bill Moseley
moseley@...
Hello, I have been trying to get gbuffy to work from time to time (off, and
on) against my courier imap server, but the boxes always show up with zero
mail in it. At the same time when I setup mailboxes on a exchange server it
notifies fine.
Any pointers?
This is the only spy detection software
that
protect you against 99.9% of all Spywares
"Spyware" is a common term for files that are installed
on your system without your knowledge that allow the user to monitor your PCs
activities surreptitiously, Silently your PCs Data and your habits are being
documented for review and potential use against you..
Spyware devices take many forms: keysroke loggers, web activity
recorders, program access monitoring devices, password grabbers, and recovery
programs, instant message recorders, email monitors and redirectors, and many
more.
WARNING: Virus softwares such as Mcafee and Norton Anti-Virus protect
you against viruses not Spywares.
If you don't want
more emails from us please e-mail: nomore@...
This email was sent
using an evaluation version of ESMTP @Engine http://www.esmtp.net
The world fastest
email delivery software
@Engine is not spamming
software and ESMTP does not send or encourage the sending of unsolicited
email.
Is there any known fix that allows gbuffy to take into account
sylpheed's mark and cache files to update the list on unseen messages?
Thanks in advance
estamos a desenvolver um portal para os apaixonados por cachorros, como nós, com informações detalhadas sobre estes
bichanos, entre as quais: foruns, álbuns de familia, chat... tudo isto porque achamos que os cães merecem especial destaque como animais
de estimação, e como tal, nada melhor do que manter bem informado o seu dono, para que o(s) seu(s) cachorro(s) tenha(m) uma boa
vida de cão.
caso seja um dos muitos apaixonados por cachorros registe-se criando o seu passaporte, caso contrário, POR
FAVOR ignore este email, deixando-nos que lhe peça desculpa
Somos uma jovem equipa de universitários, liderados por Luis Filipe
Duarte Santos e Marco Paulo Martins da Cruz, alunos do curso de Licenciatura em Matemática e Ciências da Computação na Universidade do
Minho.
Esperamos que o nosso portal esteja muito brevemente a funcionar a 100%, entretanto, já podem começar a explorar o
nosso portal que se situa em: http://www.omundocanino.com pois é que este portal está constantemente a ser melhorado, se modo a obter
melhor tempo de resposta/espera.
assim, para os vários tipos de utilizadores recomendamos o seguinte:
Para os
utilizadores normais, registem-se, criando um passaporte, através dele, poderão discutir temas, escrever mensagens para as raças, entrar no
nosso chat 24H/7dias, sempre funcionável, não esperem criem-
no já pois temos recebido várias inscrições para os passaportes, e se
querem ter um nick que vos agrade registem-se já, pois através do registo, poderão receber todo o tipo de informação contida neste site
sempre que inserida nova informação e/ou actualizada.
A todos os canis municipais, ou canis sem fins lucrativos, existe uma secção
dedicada à adopção de cachorros abandonados, ou outros, verifiquem e usem para o bem dos cachorros, é grátis e pode salvar muitos
cachorros dando-lhes uma nova familia, enfim tudo em nome dos cachorros.
Para os Criadores de Cães, Veterinários, Clinicas
Veterinárias, Hotéis Caninos, Escolas Caninas, temos à vossa disposição as denominadas 'fichas' que servirão para informar os nossos
utilizadores da vossa existência, tendo à partida um sistema de procura eficiente, que rapidamente os utilziadores chegarão até às
referidas fichas, é claro que estas fichas serão, sempre que inseridas, notificadas aos utilizadores por um sistema de mailing list, em que mal uma
nova ficha seja inserida esta será mandada para todos os utilizadores a notificar-los para vos visitarem, mas para que estes
serviços funcionem, quem pretender uma ficha terá de pagar uma simbólica quantia, para despesas de manutenção. podem verificar toda a informação
referente Às fichas na secção publicidade no fundo do site,incluindo um exemplo de como será uma suposta ficha, caso tenham
dúvidas,não hesitem contactem-nos através do email marketing@...: ao criarem o passaporte não têm direito a
uma ficha, mas sim a um passaporte AuAu
Para os possiveis anunciantes/publicitários, temos uma variedade de publicidade,
para vos oferecer desde o banner principal aos banners laterais, já efectuamos acordos com algumas empresas, tendo ainda por ficar metade por
preencher, estas empresas ainda não estão com o banner publicitário no ar, porque o a data de inicio no acordo ainda não chegou,
caso pretenda publicitar a sua empresa no nosso site, não espere, faça-o já, pois temos um limite máximo de anunciantes, que no total
perfazem os 12, caso pretenda mais informações entre no nosso site, e escolha a secção publicidade no fundo da página, os preços expostos são
meramente ocasionais, pois conforme o acordo celebrado, o preço poderá ser inferior um superior, é claro que quanto mais esperar mais
possibilidades existirão de o preço inflacionar. por isso lhe recomenda-mos que nos contacte por o email marketing@... ,
caso pretenda tirar dúvidas, temos um relatório da população alvo detalhado caso o pretenda.
mais uma vez caso este
email lhe tenha aborrecido de qualquer forma, POR FAVOR aceite as nossas mais sinceras desculpas.
Caso pretenda tirar alguma
dúvida ou tenha alguma questão, não hesite em nos contactar através do email: marketing@....