2 * Copyright notice from original mutt:
3 * Copyright (C) 1998 Brandon Long <blong@fiction.net>
4 * Copyright (C) 1999 Andrej Gritsenko <andrej@lucky.net>
5 * Copyright (C) 2000-2001 Vsevolod Volkov <vvv@mutt.org.ua>
7 * This file is part of mutt-ng, see http://www.muttng.org/.
8 * It's licensed under the GNU General Public License,
9 * please see the file GPL in the top level source directory.
17 #include "mutt_curses.h"
29 #include "lib/debug.h"
38 void nntp_add_to_list (NNTP_SERVER * s, NNTP_DATA * d)
45 l = mem_calloc (1, sizeof (LIST));
54 static int nntp_parse_newsrc_line (NNTP_SERVER * news, char *line)
57 char group[LONG_STRING];
59 char *p = line, *b, *h;
68 while (*p && (*p != ':' && *p != '!'))
73 if (len > sizeof (group))
75 strfcpy (group, line, len);
76 if ((data = (NNTP_DATA *) hash_find (news->newsgroups, group)) == NULL) {
78 (NNTP_DATA *) mem_calloc (1, sizeof (NNTP_DATA) + str_len (group) + 1);
79 data->group = (char *) data + sizeof (NNTP_DATA);
80 strcpy (data->group, group);
83 if (news->newsgroups->nelem < news->newsgroups->curnelem * 2)
85 hash_resize (news->newsgroups, news->newsgroups->nelem * 2);
86 hash_insert (news->newsgroups, data->group, data, 0);
87 nntp_add_to_list (news, data);
90 mem_free ((void **) &data->entries);
93 data->entries = mem_calloc (x * 2, sizeof (NEWSRC_ENTRY));
105 while (*p && *p != ',' && *p != '\n')
111 if ((h = strchr (b, '-'))) {
114 data->entries[x].first = atoi (b);
115 data->entries[x].last = atoi (h);
118 data->entries[x].first = atoi (b);
119 data->entries[x].last = data->entries[x].first;
122 if (data->entries[x].last != 0)
125 if (x && !data->lastMessage)
126 data->lastMessage = data->entries[x - 1].last;
128 mutt_newsgroup_stat (data);
129 debug_print (2, ("Newsgroup %s\n", data->group));
134 static int slurp_newsrc (NNTP_SERVER * news)
140 news->stat = stat (news->newsrc, &sb);
141 news->size = sb.st_size;
142 news->mtime = sb.st_mtime;
144 if ((fp = safe_fopen (news->newsrc, "r")) == NULL)
146 /* hmm, should we use dotlock? */
147 if (mx_lock_file (news->newsrc, fileno (fp), 0, 0, 1)) {
152 buf = mem_malloc (sb.st_size + 1);
153 while (fgets (buf, sb.st_size + 1, fp))
154 nntp_parse_newsrc_line (news, buf);
157 mx_unlock_file (news->newsrc, fileno (fp), 0);
162 void nntp_cache_expand (char *dst, const char *src)
164 snprintf (dst, _POSIX_PATH_MAX, "%s/%s", NewsCacheDir, src);
165 mutt_expand_path (dst, _POSIX_PATH_MAX);
168 /* Loads $news_cache_dir/.index into memory, loads newsserver data
169 * and newsgroup cache names */
170 static int nntp_parse_cacheindex (NNTP_SERVER * news)
173 char buf[HUGE_STRING], *cp;
174 char dir[_POSIX_PATH_MAX], file[_POSIX_PATH_MAX];
179 /* check is server name defined or not */
180 if (!news || !news->conn || !news->conn->account.host)
182 unset_option (OPTNEWSCACHE);
183 if (!NewsCacheDir || !*NewsCacheDir)
186 strfcpy (dir, NewsCacheDir, sizeof (dir));
187 mutt_expand_path (dir, sizeof (dir));
189 if (lstat (dir, &st) || (st.st_mode & S_IFDIR) == 0) {
190 snprintf (buf, sizeof (buf), _("Directory %s not exist. Create it?"),
192 if (mutt_yesorno (buf, M_YES) != M_YES
193 || mkdir (dir, (S_IRWXU + S_IRWXG + S_IRWXO))) {
194 mutt_error _("Cache directory not created!");
201 set_option (OPTNEWSCACHE);
203 mem_free (&news->cache);
204 snprintf (buf, sizeof (buf), "%s/.index", dir);
205 if (!(index = safe_fopen (buf, "a+")))
208 while (fgets (buf, sizeof (buf), index)) {
209 buf[str_len (buf) - 1] = 0; /* strip ending '\n' */
210 if (!str_ncmp (buf, "#: ", 3) &&
211 !str_casecmp (buf + 3, news->conn->account.host))
214 while (fgets (buf, sizeof (buf), index)) {
216 while (*cp && *cp != ' ')
221 if (!str_cmp (buf, "#:"))
223 sscanf (cp + 1, "%s %d %d", file, &l, &m);
224 if (!str_cmp (buf, "ALL")) {
225 news->cache = str_dup (file);
226 news->newgroups_time = m;
228 else if (news->newsgroups) {
229 if ((data = (NNTP_DATA *) hash_find (news->newsgroups, buf)) == NULL) {
231 (NNTP_DATA *) mem_calloc (1,
232 sizeof (NNTP_DATA) + str_len (buf) + 1);
233 data->group = (char *) data + sizeof (NNTP_DATA);
234 strcpy (data->group, buf);
237 if (news->newsgroups->nelem < news->newsgroups->curnelem * 2)
239 hash_resize (news->newsgroups, news->newsgroups->nelem * 2);
240 hash_insert (news->newsgroups, data->group, data, 0);
241 nntp_add_to_list (news, data);
243 data->cache = str_dup (file);
245 if (!data->firstMessage || data->lastMessage < m)
247 if (!data->firstMessage)
248 data->firstMessage = l;
249 if (data->lastMessage < m)
250 data->lastMessage = m;
251 data->lastCached = m;
252 if (t || !data->unread)
253 mutt_newsgroup_stat (data);
260 const char *nntp_format_str (char *dest, size_t destlen, char op,
261 const char *src, const char *fmt,
262 const char *ifstring, const char *elsestring,
263 unsigned long data, format_flag flags)
265 char fn[SHORT_STRING], tmp[SHORT_STRING];
269 strncpy (fn, NewsServer, sizeof (fn) - 1);
271 snprintf (tmp, sizeof (tmp), "%%%ss", fmt);
272 snprintf (dest, destlen, tmp, fn);
278 /* nntp_parse_url: given an NNPT URL, return host, port,
279 * username, password and newsgroup will recognise. */
280 int nntp_parse_url (const char *server, ACCOUNT * acct,
281 char *group, size_t group_len)
289 acct->port = NNTP_PORT;
290 acct->type = M_ACCT_TYPE_NNTP;
292 c = str_dup (server);
293 url_parse_ciss (&url, c);
295 if (url.scheme == U_NNTP || url.scheme == U_NNTPS) {
296 if (url.scheme == U_NNTPS) {
297 acct->flags |= M_ACCT_SSL;
298 acct->port = NNTP_SSL_PORT;
303 strfcpy (group, url.path, group_len);
305 ret = mutt_account_fromurl (acct, &url);
312 void nntp_expand_path (char *line, size_t len, ACCOUNT * acct)
316 url.path = str_dup (line);
317 mutt_account_tourl (acct, &url);
318 url_ciss_tostring (&url, line, len, 0);
319 mem_free (&url.path);
323 * Automatically loads a newsrc into memory, if necessary.
324 * Checks the size/mtime of a newsrc file, if it doesn't match, load
325 * again. Hmm, if a system has broken mtimes, this might mean the file
326 * is reloaded every time, which we'd have to fix.
328 * a newsrc file is a line per newsgroup, with the newsgroup, then a
329 * ':' denoting subscribed or '!' denoting unsubscribed, then a
330 * comma separated list of article numbers and ranges.
332 NNTP_SERVER *mutt_select_newsserver (char *server)
334 char file[_POSIX_PATH_MAX];
341 memset (&acct, 0, sizeof (ACCOUNT));
343 if (!server || !*server) {
344 mutt_error _("No newsserver defined!");
349 buf = p = mem_calloc (str_len (server) + 10, sizeof (char));
350 if (url_check_scheme (server) == U_UNKNOWN) {
351 strcpy (buf, "nntp://");
352 p = strchr (buf, '\0');
356 if ((nntp_parse_url (buf, &acct, file, sizeof (file))) < 0 || *file) {
358 mutt_error (_("%s is an invalid newsserver specification!"), server);
363 conn = mutt_conn_find (NULL, &acct);
367 mutt_FormatString (file, sizeof (file), NONULL (NewsRc), nntp_format_str, 0,
369 mutt_expand_path (file, sizeof (file));
371 serv = (NNTP_SERVER *) conn->data;
375 /* externally modified? */
376 if (serv->stat != stat (file, &sb) || (!serv->stat &&
377 (serv->size != sb.st_size
378 || serv->mtime != sb.st_mtime))) {
379 for (list = serv->list; list; list = list->next) {
380 NNTP_DATA *data = (NNTP_DATA *) list->data;
383 data->subscribed = 0;
389 nntp_clear_cacheindex (serv);
392 if (serv->status == NNTP_BYE)
393 serv->status = NNTP_NONE;
394 nntp_check_newgroups (serv, 0);
399 serv = mem_calloc (1, sizeof (NNTP_SERVER));
401 serv->newsrc = str_dup (file);
402 serv->newsgroups = hash_create (1009);
403 slurp_newsrc (serv); /* load .newsrc */
404 nntp_parse_cacheindex (serv); /* load .index */
405 if (option (OPTNEWSCACHE) && serv->cache && nntp_get_cache_all (serv) >= 0)
406 nntp_check_newgroups (serv, 1);
407 else if (nntp_get_active (serv) < 0) {
408 hash_destroy (&serv->newsgroups, nntp_delete_data);
409 for (list = serv->list; list; list = list->next)
411 mutt_free_list (&serv->list);
412 mem_free (&serv->newsrc);
413 mem_free (&serv->cache);
417 nntp_clear_cacheindex (serv);
418 conn->data = (void *) serv;
424 * full status flags are not supported by nntp, but we can fake some
425 * of them. This is how:
426 * Read = a read message number is in the .newsrc
427 * New = a message is new since we last read this newsgroup
428 * Old = anything else
429 * So, Read is marked as such in the newsrc, old is anything that is
430 * "skipped" in the newsrc, and new is anything not in the newsrc nor
431 * in the cache. By skipped, I mean before the last unread message
433 void nntp_get_status (CONTEXT * ctx, HEADER * h, char *group, int article)
435 NNTP_DATA *data = (NNTP_DATA *) ctx->data;
439 data = (NNTP_DATA *) hash_find (data->nserv->newsgroups, group);
444 debug_print (3, ("newsgroup %s not found\n", group));
449 for (x = 0; x < data->num; x++) {
450 if ((article >= data->entries[x].first) &&
451 (article <= data->entries[x].last)) {
452 /* we cannot use mutt_set_flag() because mx_update_context()
458 /* If article was not cached yet, it is new! :) */
459 if (!data->cache || article > data->lastCached)
461 /* Old articles are articles which aren't read but an article after them
463 if (option (OPTMARKOLD))
467 void mutt_newsgroup_stat (NNTP_DATA * data)
470 unsigned int first, last;
473 if (data->lastMessage == 0 || data->firstMessage > data->lastMessage)
476 data->unread = data->lastMessage - data->firstMessage + 1;
477 for (i = 0; i < data->num; i++) {
478 first = data->entries[i].first;
479 if (first < data->firstMessage)
480 first = data->firstMessage;
481 last = data->entries[i].last;
482 if (last > data->lastMessage)
483 last = data->lastMessage;
485 data->unread -= last - first + 1;
489 static int puti (char *line, int num)
494 *p++ = '0' + num % 10;
498 *line++ = *--p, num++;
503 static void nntp_create_newsrc_line (NNTP_DATA * data, char **buf,
504 char **pline, size_t * buflen)
507 size_t len = *buflen - (*pline - *buf);
510 if (len < LONG_STRING * 10) {
514 mem_realloc (buf, *buflen);
515 line = *buf + (*pline - line);
517 strcpy (line, data->group);
518 len -= str_len (line) + 1;
519 line += str_len (line);
520 *line++ = data->subscribed ? ':' : '!';
524 for (x = 0; x < data->num; x++) {
525 if (len < LONG_STRING) {
530 mem_realloc (buf, *buflen);
531 line = *buf + (*pline - line);
539 if (data->entries[x].first == data->entries[x].last)
540 snprintf (line, len, "%d%n", data->entries[x].first, &i);
542 snprintf (line, len, "%d-%d%n",
543 data->entries[x].first, data->entries[x].last, &i);
547 i = puti (line, data->entries[x].first);
550 if (data->entries[x].first != data->entries[x].last) {
553 i = puti (line, data->entries[x].last);
564 void newsrc_gen_entries (CONTEXT * ctx)
566 NNTP_DATA *data = (NNTP_DATA *) ctx->data;
568 unsigned int last = 0, first = 1;
569 int save_sort = SORT_ORDER;
571 if (Sort != SORT_ORDER) {
574 mutt_sort_headers (ctx, 0);
578 data->entries = mem_calloc (5, sizeof (NEWSRC_ENTRY));
583 * Set up to fake initial sequence from 1 to the article before the
584 * first article in our list
589 for (x = 0; x < ctx->msgcount; x++) {
590 if (series) { /* search for first unread */
592 * We don't actually check sequential order, since we mark
593 * "missing" entries as read/deleted
595 last = ctx->hdrs[x]->article_num;
596 if (last >= data->firstMessage && !ctx->hdrs[x]->deleted &&
597 !ctx->hdrs[x]->read) {
598 if (data->num >= data->max) {
599 data->max = data->max * 2;
600 mem_realloc (&data->entries, data->max * sizeof (NEWSRC_ENTRY));
602 data->entries[data->num].first = first;
603 data->entries[data->num].last = last - 1;
608 else { /* search for first read */
610 if (ctx->hdrs[x]->deleted || ctx->hdrs[x]->read) {
614 last = ctx->hdrs[x]->article_num;
617 if (series && first <= data->lastLoaded) {
618 if (data->num >= data->max) {
619 data->max = data->max * 2;
620 mem_realloc (&data->entries, data->max * sizeof (NEWSRC_ENTRY));
622 data->entries[data->num].first = first;
623 data->entries[data->num].last = data->lastLoaded;
627 if (save_sort != Sort) {
629 mutt_sort_headers (ctx, 0);
633 static int mutt_update_list_file (char *filename, char *section,
634 char *key, char *line) {
637 char buf[HUGE_STRING];
638 char tmpfile[_POSIX_PATH_MAX], link[_POSIX_PATH_MAX];
640 int ext = 0, done = 0, r = 0, l = 0;
642 /* if file not exist, create it */
643 if ((ifp = safe_fopen (filename, "a")))
645 debug_print (1, ("Opening %s\n", filename));
646 if (!(ifp = safe_fopen (filename, "r"))) {
647 mutt_error (_("Unable to open %s for reading"), filename);
650 if (mx_lock_file (filename, fileno (ifp), 0, 0, 1)) {
652 mutt_error (_("Unable to lock %s"), filename);
655 /* use mutt_adv_mktemp() to get a tempfile in the same
656 * directory as filename is so that we can follow symlinks
657 * via rename(2); as dirname(2) may modify its argument,
658 * temporarily use buf as copy of it
660 strncpy (buf, filename, sizeof (buf));
661 strncpy (tmpfile, basename (filename), sizeof (tmpfile));
662 mutt_adv_mktemp ((const char*) dirname (buf), tmpfile, sizeof (tmpfile));
663 debug_print (1, ("Opening %s\n", tmpfile));
664 if (!(ofp = fopen (tmpfile, "w"))) {
666 mutt_error (_("Unable to open %s for writing"), tmpfile);
671 while (r != EOF && !done && fgets (buf, sizeof (buf), ifp)) {
672 r = fputs (buf, ofp);
674 while (*c && *c != '\n') c++;
675 c[0] = 0; /* strip EOL */
676 if (!strncmp (buf, "#: ", 3) && !str_casecmp (buf+3, section))
679 if (r != EOF && !done) {
680 snprintf (buf, sizeof(buf), "#: %s\n", section);
681 r = fputs (buf, ofp);
686 while (r != EOF && fgets (buf, sizeof (buf), ifp)) {
689 while (*c && (*c != '\r') && (*c != '\n')) c++;
691 if (*c != '\\') ext = 0;
692 } else if ((section && !strncmp (buf, "#: ", 3))) {
697 r = fputs (buf, ofp);
700 } else if (key && !strncmp (buf, key, strlen(key)) &&
701 (!*key || buf[strlen(key)] == ' ')) {
704 while (*c && (*c != '\r') && (*c != '\n')) c++;
706 if (*c == '\\') ext = 1;
708 r = fputs (line, ofp);
710 r = fputc ('\n', ofp);
714 r = fputs (buf, ofp);
718 while (r != EOF && fgets (buf, sizeof (buf), ifp))
719 r = fputs (buf, ofp);
721 /* If there wasn't a line to replace, put it on the end of the file */
722 if (r != EOF && !done && line) {
724 r = fputc ('\n', ofp);
726 mx_unlock_file (filename, fileno (ifp), 0);
731 mutt_error (_("Can't write %s"), tmpfile);
735 if ((l = readlink (filename, link, sizeof (link)-1)) > 0)
737 debug_print (1, ("Renaming %s to %s\n",tmpfile, l > 0 ? link : filename));
738 if (rename (tmpfile, l > 0 ? link : filename) < 0) {
740 mutt_error (_("Can't rename %s to %s"), tmpfile, l > 0 ? link : filename);
746 int mutt_newsrc_update (NNTP_SERVER * news)
756 llen = len = 10 * LONG_STRING;
757 line = buf = mem_calloc (1, len);
758 /* we will generate full newsrc here */
759 for (tmp = news->list; tmp; tmp = tmp->next) {
760 data = (NNTP_DATA *) tmp->data;
761 if (!data || !data->rc)
763 nntp_create_newsrc_line (data, &buf, &line, &llen);
764 debug_print (2, ("Added to newsrc: %s\n", line));
765 line += str_len (line);
767 /* newrc being fully rewritten */
769 (r = mutt_update_list_file (news->newsrc, NULL, "", buf)) == 0) {
772 stat (news->newsrc, &st);
773 news->size = st.st_size;
774 news->mtime = st.st_mtime;
780 static FILE *mutt_mkname (char *s)
782 char buf[_POSIX_PATH_MAX], *pc;
786 nntp_cache_expand (buf, s);
787 if ((fp = safe_fopen (buf, "w")))
790 nntp_cache_expand (buf, "cache-XXXXXX");
791 pc = buf + str_len (buf) - 12; /* positioning to "cache-XXXXXX" */
792 if ((fd = mkstemp (buf)) == -1)
794 strcpy (s, pc); /* generated name */
795 return fdopen (fd, "w");
798 /* Updates info into .index file: ALL or about selected newsgroup */
799 static int nntp_update_cacheindex (NNTP_SERVER * serv, NNTP_DATA * data)
801 char buf[LONG_STRING], *key = "ALL";
802 char file[_POSIX_PATH_MAX];
804 if (!serv || !serv->conn || !serv->conn->account.host)
807 if (data && data->group) {
809 snprintf (buf, sizeof (buf), "%s %s %d %d", key, data->cache,
810 data->firstMessage, data->lastLoaded);
813 strfcpy (file, serv->cache, sizeof (file));
814 snprintf (buf, sizeof (buf), "ALL %s 0 %d", file,
815 (int) serv->newgroups_time);
817 nntp_cache_expand (file, ".index");
818 return mutt_update_list_file (file, serv->conn->account.host, key, buf);
821 /* Remove cache files of unsubscribed newsgroups */
822 void nntp_clear_cacheindex (NNTP_SERVER * news)
827 if (option (OPTSAVEUNSUB) || !news)
830 for (tmp = news->list; tmp; tmp = tmp->next) {
831 data = (NNTP_DATA *) tmp->data;
832 if (!data || data->subscribed || !data->cache)
834 nntp_delete_cache (data);
835 debug_print (2, ("Removed from .index: %s\n", data->group));
840 int nntp_save_cache_index (NNTP_SERVER * news)
842 char buf[HUGE_STRING];
843 char file[_POSIX_PATH_MAX];
848 if (!news || !news->newsgroups)
850 if (!option (OPTNEWSCACHE))
854 nntp_cache_expand (file, news->cache);
856 f = safe_fopen (file, "w");
859 strfcpy (buf, news->conn->account.host, sizeof (buf));
860 f = mutt_mkname (buf);
861 news->cache = str_dup (buf);
862 nntp_cache_expand (file, buf);
867 for (l = news->list; l; l = l->next) {
868 if ((d = (NNTP_DATA *) l->data) && !d->deleted) {
870 snprintf (buf, sizeof (buf), "%s %d %d %c %s\n", d->group,
871 d->lastMessage, d->firstMessage, d->allowed ? 'y' : 'n',
874 snprintf (buf, sizeof (buf), "%s %d %d %c\n", d->group,
875 d->lastMessage, d->firstMessage, d->allowed ? 'y' : 'n');
876 if (fputs (buf, f) == EOF) {
885 if (nntp_update_cacheindex (news, NULL)) {
892 int nntp_save_cache_group (CONTEXT * ctx)
894 char buf[HUGE_STRING], addr[STRING];
895 char file[_POSIX_PATH_MAX];
899 int i = 0, save = SORT_ORDER;
902 if (!option (OPTNEWSCACHE))
904 if (!ctx || !ctx->data || ctx->magic != M_NNTP)
907 if (((NNTP_DATA *) ctx->data)->cache) {
908 nntp_cache_expand (file, ((NNTP_DATA *) ctx->data)->cache);
910 f = safe_fopen (file, "w");
913 snprintf (buf, sizeof (buf), "%s-%s",
914 ((NNTP_DATA *) ctx->data)->nserv->conn->account.host,
915 ((NNTP_DATA *) ctx->data)->group);
916 f = mutt_mkname (buf);
917 ((NNTP_DATA *) ctx->data)->cache = str_dup (buf);
918 nntp_cache_expand (file, buf);
923 if (Sort != SORT_ORDER) {
926 mutt_sort_headers (ctx, 0);
929 /* Save only $nntp_context messages... */
930 ((NNTP_DATA *) ctx->data)->lastCached = 0;
931 if (NntpContext && ctx->msgcount > NntpContext)
932 i = ctx->msgcount - NntpContext;
933 for (; i < ctx->msgcount; i++) {
934 if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->article_num != prev) {
937 rfc822_write_address (addr, sizeof (addr), h->env->from, 0);
938 tm = gmtime (&h->date_sent);
939 snprintf (buf, sizeof (buf),
940 "%d\t%s\t%s\t%d %s %d %02d:%02d:%02d GMT\t%s\t",
941 h->article_num, h->env->subject, addr, tm->tm_mday,
942 Months[tm->tm_mon], tm->tm_year + 1900, tm->tm_hour,
943 tm->tm_min, tm->tm_sec, h->env->message_id);
945 if (h->env->references)
946 mutt_write_references (h->env->references, f);
947 snprintf (buf, sizeof (buf), "\t" OFF_T_FMT "\t%d\tXref: %s\n",
948 h->content->length, h->lines, NONULL (h->env->xref));
949 if (fputs (buf, f) == EOF) {
955 prev = ctx->hdrs[i]->article_num;
960 mutt_sort_headers (ctx, 0);
964 if (nntp_update_cacheindex (((NNTP_DATA *) ctx->data)->nserv,
965 (NNTP_DATA *) ctx->data)) {
969 ((NNTP_DATA *) ctx->data)->lastCached =
970 ((NNTP_DATA *) ctx->data)->lastLoaded;
974 void nntp_delete_cache (NNTP_DATA * data)
976 char buf[_POSIX_PATH_MAX];
978 if (!option (OPTNEWSCACHE) || !data || !data->cache || !data->nserv)
981 nntp_cache_expand (buf, data->cache);
983 mem_free (&data->cache);
984 data->lastCached = 0;
985 nntp_cache_expand (buf, ".index");
986 mutt_update_list_file (buf, data->nserv->conn->account.host, data->group,
990 NNTP_DATA *mutt_newsgroup_subscribe (NNTP_SERVER * news, char *group)
994 if (!news || !news->newsgroups || !group || !*group)
996 if (!(data = (NNTP_DATA *) hash_find (news->newsgroups, group))) {
998 (NNTP_DATA *) mem_calloc (1, sizeof (NNTP_DATA) + str_len (group) + 1);
999 data->group = (char *) data + sizeof (NNTP_DATA);
1000 strcpy (data->group, group);
1003 if (news->newsgroups->nelem < news->newsgroups->curnelem * 2)
1005 hash_resize (news->newsgroups, news->newsgroups->nelem * 2);
1006 hash_insert (news->newsgroups, data->group, data, 0);
1007 nntp_add_to_list (news, data);
1009 if (!data->subscribed) {
1010 data->subscribed = 1;
1016 NNTP_DATA *mutt_newsgroup_unsubscribe (NNTP_SERVER * news, char *group)
1020 if (!news || !news->newsgroups || !group || !*group ||
1021 !(data = (NNTP_DATA *) hash_find (news->newsgroups, group)))
1023 if (data->subscribed) {
1024 data->subscribed = 0;
1025 if (!option (OPTSAVEUNSUB))
1031 NNTP_DATA *mutt_newsgroup_catchup (NNTP_SERVER * news, char *group)
1035 if (!news || !news->newsgroups || !group || !*group ||
1036 !(data = (NNTP_DATA *) hash_find (news->newsgroups, group)))
1039 data->entries = mem_calloc (5, sizeof (NEWSRC_ENTRY));
1043 data->entries[0].first = 1;
1045 data->entries[0].last = data->lastMessage;
1046 if (Context && Context->data == data) {
1049 for (x = 0; x < Context->msgcount; x++)
1050 mutt_set_flag (Context, Context->hdrs[x], M_READ, 1);
1055 NNTP_DATA *mutt_newsgroup_uncatchup (NNTP_SERVER * news, char *group)
1059 if (!news || !news->newsgroups || !group || !*group ||
1060 !(data = (NNTP_DATA *) hash_find (news->newsgroups, group)))
1063 data->entries = mem_calloc (5, sizeof (NEWSRC_ENTRY));
1067 data->entries[0].first = 1;
1068 data->entries[0].last = data->firstMessage - 1;
1069 if (Context && Context->data == data) {
1072 data->unread = Context->msgcount;
1073 for (x = 0; x < Context->msgcount; x++)
1074 mutt_set_flag (Context, Context->hdrs[x], M_READ, 0);
1077 data->unread = data->lastMessage - data->entries[0].last;
1081 /* this routine gives the first newsgroup with new messages */
1082 void nntp_buffy (char* dst, size_t dstlen) {
1086 /* forward to current group */
1087 for (list = CurrentNewsSrv->list; list; list = list->next) {
1088 NNTP_DATA *data = (NNTP_DATA *) list->data;
1089 if (data && data->subscribed && data->unread &&
1090 Context && Context->magic == M_NNTP &&
1091 str_cmp (data->group, ((NNTP_DATA *) Context->data)->group) == 0) {
1102 list = CurrentNewsSrv->list;
1104 for (; list; list = list->next) {
1105 NNTP_DATA *data = (NNTP_DATA *) list->data;
1107 if (data && data->subscribed && data->unread) {
1108 if (Context && Context->magic == M_NNTP &&
1109 !str_cmp (data->group, ((NNTP_DATA *) Context->data)->group)) {
1110 unsigned int i, unread = 0;
1112 for (i = 0; i < Context->msgcount; i++)
1113 if (!Context->hdrs[i]->read && !Context->hdrs[i]->deleted)
1118 strncpy (dst, data->group, dstlen);