X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Finc.c;h=2a866e925867497638a42f80b770fd2465aa64e1;hb=d39e2c447b0d163a5a63f480b23d06edb7a73aa0;hp=186312ed681306b01ba12287f6e0b1170c9f61ff;hpb=714b5c530ece27ea2835a313013f5b770163403c;p=mmh diff --git a/uip/inc.c b/uip/inc.c index 186312e..2a866e9 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -163,7 +163,7 @@ main(int argc, char **argv) #ifdef LOCALE setlocale(LC_ALL, ""); #endif - invo_name = r1bindex(argv[0], '/'); + invo_name = mhbasename(argv[0]); /* read user profile/context */ context_read(); @@ -192,7 +192,7 @@ main(int argc, char **argv) case AUDSW: if (!(cp = *argp++) || *cp == '-') adios(NULL, "missing argument to %s", argp[-2]); - audfile = getcpy(m_maildir(cp)); + audfile = getcpy(expanddir(cp)); continue; case NAUDSW: audfile = NULL; @@ -223,7 +223,7 @@ main(int argc, char **argv) if (!(cp = *argp++) || *cp == '-') adios(NULL, "missing argument to %s", argp[-2]); - from = path(cp, TFILE); + from = getcpy(expanddir(cp)); /* ** If the truncate file is in default state, @@ -265,7 +265,7 @@ main(int argc, char **argv) if (folder) adios(NULL, "only one folder at a time!"); else - folder = pluspath(cp); + folder = getcpy(expandfol(cp)); } else { adios(NULL, "usage: %s [+folder] [switches]", invo_name); @@ -286,9 +286,9 @@ main(int argc, char **argv) if (from) newmail = from; else if ((newmail = getenv("MAILDROP")) && *newmail) - newmail = m_mailpath(newmail); + newmail = toabsdir(newmail); else if ((newmail = context_find("maildrop")) && *newmail) - newmail = m_mailpath(newmail); + newmail = toabsdir(newmail); else { newmail = concat(MAILDIR, "/", MAILFIL, NULL); } @@ -300,11 +300,9 @@ main(int argc, char **argv) newmail = cp; - if (!context_find("path")) - free(path("./", TFOLDER)); if (!folder) - folder = getfolder(0); - maildir = m_maildir(folder); + folder = getdeffol(); + maildir = toabsdir(folder); if ((maildir_copy = strdup(maildir)) == (char *)0) adios(maildir, "error allocating memory to copy maildir");