Git Product home page Git Product logo

Comments (6)

jstedfast avatar jstedfast commented on May 17, 2024

Yea, the SpecialFolders API will return null for folders that are not defined by the server via the SPECIAL-USE or XLIST extensions (SPECIAL-USE is an official IMAP extension and XLIST is a custom extension that Google uses for GMail).

Exchange probably doesn't implement either extension, so that's probably why it returns null.

What you'll probably need to do is have a configuration setting in your app allowing the user to specify what the name of their "Sent" folder is.

Some mail clients, like Outlook, auto-create a folder on the server called "Sent Mail". Others create "sent-mail", and some just call it "Sent". And some clients create a folder with a translated name.

This is actually why, I think, developers came up with the SPECIAL-USE IMAP extension because it makes things a lot simpler.

One way to check if the IMAP server supports SPECIAL-USE is to check:

if ((client.Capabilities & (ImapCapabilities.SpecilUse | ImapCapabilities.XList)) != 0) {
    // ...
}

Does that help?

from mailkit.

tichyt avatar tichyt commented on May 17, 2024

Well, it explains the situation, but I remember ImapX did have Sent folder (probably implementation not according to standards I guess?) when I used it with the same Exchange. Nevertheless, what would be the best approach - i'm trying to list all root folders and check for "Sent" names, but probably doing something wrong as

var root = client.GetFolder("");

returns folder that cannot be opened (BAD response). How do I correctly list all root-level folders? From there on I can recursively traverse via GetSubfolders, that works nicely already.
Thanks,
Tomas

from mailkit.

tichyt avatar tichyt commented on May 17, 2024

OK, just tried Sent fallback to Sent Items and Odeslaná Pošta (local version) , last one worked, so solved I guess. Thank you,
Tomas

from mailkit.

jstedfast avatar jstedfast commented on May 17, 2024

I'm glad you figured it out, but I guess I should give my recommendation anyway, just in case anyone else stumbles onto this sort of problem (and I'll probably try to document it as well).

My recommendation would be to do something like this:

static string[] CommonSentFolderNames = { "Sent Items", "Sent Mail", /* maybe add some translated names */ };

static IFolder GetSentFolder (ImapClient client, CancellationToken cancellationToken)
{
    var personal = client.GetFolder (client.PersonalNamespaces[0]);

    foreach (var folder in personal.GetSubfolders (false, cancellationToken)) {
        foreach (var name in CommonSentFolderNames) {
            if (folder.Name == commonName)
                return folder;
        }
    }

    return null;
}

I guess this could be done simpler with LINQ:

var personal = client.GetFolder (client.PersonalNamespaces[0]);
var sentFolder = personal.GetSubfolders (false).FirstOrDefault (x => CommonSentFolderNames.Contains (x.Name));

from mailkit.

tichyt avatar tichyt commented on May 17, 2024

yep, done exactly as you suggested Jeff. I think this can be closed now, or?
Thank you for your help,
Tomas

from mailkit.

jstedfast avatar jstedfast commented on May 17, 2024

Yea, I just left it open until I had time to add the above snippets to the documentation.

from mailkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.