aboutsummaryrefslogtreecommitdiffstats
path: root/art/stock-edit-16.png
Commit message (Expand)AuthorAgeFilesLines
* An icon from Jakub to use on Evo's edit buttons.Anna Dirks2003-04-251-0/+0
='n19' href='#n19'>19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * Authors: 
 *  Dan Winship <danw@ximian.com>
 *  Peter Williams <peterw@ximian.com>
 *  Jeffrey Stedfast <fejj@ximian.com>
 *
 * Copyright 2000 Ximian, Inc. (www.ximian.com)
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of version 2 of the GNU General Public 
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <unistd.h>
#include <pthread.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>

#include <gconf/gconf.h>
#include <gconf/gconf-client.h>

#include <camel/camel.h>
#include <camel/camel-vee-folder.h>
#include <camel/camel-file-utils.h>

#include <filter/vfolder-rule.h>
#include <filter/vfolder-context.h>
#include <filter/filter-option.h>
#include <filter/filter-input.h>

#include "e-util/e-meta.h"

#include "mail-component.h"
#include "mail-session.h"
#include "mail-config.h"
#include "mail-vfolder.h"
#include "mail-tools.h"
#include "mail-mt.h"
#include "mail-folder-cache.h"
#include "em-utils.h"

/* **************************************** */

CamelFolder *
mail_tool_get_inbox (const gchar *url, CamelException *ex)
{
    CamelStore *store;
    CamelFolder *folder;
    
    store = camel_session_get_store (session, url, ex);
    if (!store)
        return NULL;
    
    folder = camel_store_get_inbox (store, ex);
    camel_object_unref (store);
    
    return folder;
}

CamelFolder *
mail_tool_get_trash (const gchar *url, int connect, CamelException *ex)
{
    CamelStore *store;
    CamelFolder *trash;
    
    if (connect)
        store = camel_session_get_store (session, url, ex);
    else
        store = (CamelStore *) camel_session_get_service (session, url, CAMEL_PROVIDER_STORE, ex);
    
    if (!store)
        return NULL;
    
    if (connect || ((CamelService *) store)->status == CAMEL_SERVICE_CONNECTED)
        trash = camel_store_get_trash (store, ex);
    else
        trash = NULL;
    
    camel_object_unref (store);
    
    return trash;
}

static char *
mail_tool_get_local_movemail_path (const unsigned char *uri, CamelException *ex)
{
    unsigned char *safe_uri, *c;
    char *path, *full;
    struct stat st;

    safe_uri = g_strdup (uri);
    for (c = safe_uri; *c; c++)
        if (strchr("/:;=|%&#!*^()\\, ", *c) || !isprint((int) *c))
            *c = '_';

    path = g_strdup_printf("%s/mail/spool", mail_component_peek_base_directory(NULL));
    if (stat(path, &st) == -1 && camel_mkdir(path, 0777) == -1) {
        camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM, _("Could not create spool directory `%s': %s"),
                     path, g_strerror(errno));
        g_free(path);
        return NULL;
    }

    full = g_strdup_printf("%s/movemail.%s", path, safe_uri);
    g_free(path);
    g_free(safe_uri);
    
    return full;
}

char *
mail_tool_do_movemail (const char *source_url, CamelException *ex)
{
    char *dest_path;
    struct stat sb;
    CamelURL *uri;

    uri = camel_url_new(source_url, ex);
    if (uri == NULL)
        return NULL;

    if (strcmp(uri->protocol, "mbox") != 0) {
        /* This is really only an internal error anyway */
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_URL_INVALID,
                      _("Trying to movemail a non-mbox source `%s'"),
                      source_url);
        camel_url_free(uri);
        return NULL;
    }
    
    /* Set up our destination. */
    dest_path = mail_tool_get_local_movemail_path (source_url, ex);
    if (dest_path == NULL)
        return NULL;

    /* Movemail from source (source_url) to dest_path */
    camel_movemail (uri->path, dest_path, ex);
    camel_url_free(uri);

    if (stat (dest_path, &sb) < 0 || sb.st_size == 0) {
        unlink (dest_path); /* Clean up the movemail.foo file. */
        g_free (dest_path);
        return NULL;
    }
    
    if (camel_exception_is_set (ex)) {
        g_free (dest_path);
        return NULL;
    }
    
    return dest_path;
}

char *
mail_tool_generate_forward_subject (CamelMimeMessage *msg)
{
    const char *subject;
    char *fwd_subj;
    const int max_subject_length = 1024;
    
    subject = camel_mime_message_get_subject(msg);
    
    if (subject && *subject) {
        /* Truncate insanely long subjects */
        if (strlen (subject) < max_subject_length) {
            fwd_subj = g_strdup_printf ("[Fwd: %s]", subject);
        } else {
            /* We can't use %.*s because it depends on the locale being C/POSIX
               or UTF-8 to work correctly in glibc */
            /*fwd_subj = g_strdup_printf ("[Fwd: %.*s...]", max_subject_length, subject);*/
            fwd_subj = g_malloc (max_subject_length + 11);
            memcpy (fwd_subj, "[Fwd: ", 6);
            memcpy (fwd_subj + 6, subject, max_subject_length);
            memcpy (fwd_subj + 6 + max_subject_length, "...]", 5);
        }
    } else {
        const CamelInternetAddress *from;
        char *fromstr;
        
        from = camel_mime_message_get_from (msg);
        if (from) {
            fromstr = camel_address_format (CAMEL_ADDRESS (from));
            fwd_subj = g_strdup_printf ("[Fwd: %s]", fromstr);
            g_free (fromstr);
        } else
            fwd_subj = g_strdup ("[Fwd: No Subject]");
    }
    
    return fwd_subj;
}

XEvolution *
mail_tool_remove_xevolution_headers (CamelMimeMessage *message)
{
    XEvolution *xev;
    
    xev = g_new (XEvolution, 1);
    xev->flags = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution"));
    xev->source = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-Source"));
    xev->transport = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-Transport"));
    xev->account = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-Account"));
    xev->fcc = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-Fcc"));
    xev->format = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-Format"));
    xev->postto = g_strdup (camel_medium_get_header (CAMEL_MEDIUM (message), "X-Evolution-PostTo"));
    
    /* rip off the X-Evolution* headers */
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-Source");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-Transport");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-Account");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-Fcc");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-Format");
    camel_medium_remove_header (CAMEL_MEDIUM (message), "X-Evolution-PostTo");
    
    return xev;
}

void
mail_tool_restore_xevolution_headers (CamelMimeMessage *message, XEvolution *xev)
{
    if (xev->flags)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution", xev->flags);
    if (xev->source)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-Source", xev->source);
    if (xev->transport)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-Transport", xev->transport);
    if (xev->account)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-Account", xev->account);
    if (xev->fcc)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-Fcc", xev->fcc);
    if (xev->format)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-Format", xev->format);
    if (xev->postto)
        camel_medium_set_header (CAMEL_MEDIUM (message), "X-Evolution-PostTo", xev->postto);
}

void
mail_tool_destroy_xevolution (XEvolution *xev)
{
    g_free (xev->flags);
    g_free (xev->source);
    g_free (xev->transport);
    g_free (xev->account);
    g_free (xev->format);
    g_free (xev->fcc);
    g_free (xev->postto);
    g_free (xev);
}

CamelMimePart *
mail_tool_make_message_attachment (CamelMimeMessage *message)
{
    CamelMimePart *part;
    const char *subject;
    XEvolution *xev;
    char *desc;
    
    subject = camel_mime_message_get_subject (message);
    if (subject)
        desc = g_strdup_printf (_("Forwarded message - %s"), subject);
    else
        desc = g_strdup (_("Forwarded message"));
    
    /* rip off the X-Evolution headers */
    xev = mail_tool_remove_xevolution_headers (message);
    mail_tool_destroy_xevolution (xev);
    
    /* remove Bcc headers */
    while (camel_medium_get_header (CAMEL_MEDIUM (message), "Bcc"))
        camel_medium_remove_header (CAMEL_MEDIUM (message), "Bcc");
    
    part = camel_mime_part_new ();
    camel_mime_part_set_disposition (part, "inline");
    camel_mime_part_set_description (part, desc);
    camel_medium_set_content_object (CAMEL_MEDIUM (part),
                     CAMEL_DATA_WRAPPER (message));
    camel_mime_part_set_content_type (part, "message/rfc822");
    g_free (desc);
    
    return part;
}

CamelFolder *
mail_tool_uri_to_folder (const char *uri, guint32 flags, CamelException *ex)
{
    CamelURL *url;
    CamelStore *store = NULL;
    CamelFolder *folder = NULL;
    int offset = 0;
    char *curi = NULL;

    g_return_val_if_fail (uri != NULL, NULL);
    
    if (!strncmp (uri, "vtrash:", 7))
        offset = 7;
    else if (!strncmp (uri, "vjunk:", 6))
        offset = 6;
    else if (!strncmp(uri, "email:", 6)) {
        /* FIXME?: the filter:get_folder callback should do this itself? */
        curi = em_uri_to_camel(uri);
        if (uri == NULL) {
            camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM, _("Invalid folder: `%s'"), uri);
            return NULL;
        }
        uri = curi;
    }
    
    url = camel_url_new (uri + offset, ex);
    if (!url) {
        g_free(curi);
        return NULL;
    }

    store = camel_session_get_store (session, uri + offset, ex);
    if (store) {
        const char *name;

        /* if we have a fragment, then the path is actually used by the store,
           so the fragment is the path to the folder instead */
        if (url->fragment) {
            name = url->fragment;
        } else {
            if (url->path && *url->path)
                name = url->path + 1;
            else
                name = "";
        }
        
        if (offset) {
            if (offset == 7)
                folder = camel_store_get_trash (store, ex);
            else if (offset == 6)
                folder = camel_store_get_junk (store, ex);
            else
                g_assert (FALSE);
        } else
            folder = camel_store_get_folder (store, name, flags, ex);
        camel_object_unref (store);
    }
    
    if (folder)
        mail_note_folder (folder);
    
    camel_url_free (url);
    g_free(curi);
    
    return folder;
}

/**
 * mail_tools_x_evolution_message_parse:
 * @in: GtkSelectionData->data
 * @inlen: GtkSelectionData->length
 * @uids: pointer to a gptrarray that will be filled with uids on success
 *
 * Parses the GtkSelectionData and returns a CamelFolder and a list of
 * UIDs specified by the selection.
 **/
CamelFolder *
mail_tools_x_evolution_message_parse (char *in, unsigned int inlen, GPtrArray **uids)
{
    /* format: "uri\0uid1\0uid2\0uid3\0...\0uidn" */
    char *inptr, *inend;
    CamelFolder *folder;
    
    if (in == NULL)
        return NULL;
    
    folder = mail_tool_uri_to_folder (in, 0, NULL);
    
    if (!folder)
        return NULL;
    
    /* split the uids */
    inend = in + inlen;
    inptr = in + strlen (in) + 1;
    *uids = g_ptr_array_new ();
    while (inptr < inend) {
        char *start = inptr;
        
        while (inptr < inend && *inptr)
            inptr++;
        
        g_ptr_array_add (*uids, g_strndup (start, inptr - start));
        inptr++;
    }
    
    return folder;
}

char *
mail_tools_folder_to_url (CamelFolder *folder)
{
    CamelURL *url;
    char *out;

    g_return_val_if_fail (CAMEL_IS_FOLDER (folder), NULL);

    url = camel_url_copy(((CamelService *)folder->parent_store)->url);
    if (((CamelService *)folder->parent_store)->provider->url_flags  & CAMEL_URL_FRAGMENT_IS_PATH) {
        camel_url_set_fragment(url, folder->full_name);
    } else {
        char *name = g_alloca(strlen(folder->full_name)+2);

        sprintf(name, "/%s", folder->full_name);
        camel_url_set_path(url, name);
    }

    out = camel_url_to_string(url, CAMEL_URL_HIDE_ALL);
    camel_url_free(url);

    return out;
}