The store directory and Multiple Domain

Gentlemen,
My directory structure is composed of a fantasy domain like abc.com (internal IP only) under which (ou=People) I created all users.
A second domain was created like xyz.com (MX record and a valid IP address) with the proper entry in the DC tree and
- inetDomainBaseDN pointing to abc.com
- preferredMailHos server.abc.com
- inetCanonicalDomainName xyz.com
Messages sent (from an outside domain) to any user addressed like [email protected] goes to ../=user/hashdir/hashdir/=joe@xyz%dcom/00 in the store directory.
For some users I noticed that there exists another (upper level) directory, like ../=user/hashdir/hashdir/=joe. What is the purpose of this directory? How/why was it created?
Now: Netscape Messenger is configured with reference to the real domain, i.e:
- server.xyz.com
- [email protected]
- Reply-To address: [email protected]
I can send messages out, but incoming messages are not fetched by this mail tool. They remain in the store directory as explained
Where is the error? What did I miss?
Thanks in advance...
Ivo

Hi,
the architecture described above DOES work.
The trouble with the mail tools that showed an erratic behavior was caused by another team that was playing with the Company's firewall and DNS.
My messaging system is now working OK for over a week with the mail tools configured with the correct domain name.
Now, for the store directory: in a structure as the above, each user will eventually have an entry for each domain, like:
../hash/hash/=user
../hash/hash/=user@xyz%dcom
I could not find an explanation about such usage in the manuals. Do you have any hint?
Bye.
Ivo

Similar Messages

  • How can i get also the files in the root directory and how can i for testing add items of IEnumerable FTPListDetail to List string ?

    What i get is only the directories and files that in other nodes. But i have also files on the root directory and i never
    get them. This is a screenshot of my program after i got the content of my ftp. I'm using treeView to display my ftp content:
    You can see two directories from the root but no files on the root it self. And in my ftp server host i have files in the root direcory.
    This is the method i'm using to get the directory listing:
    public IEnumerable<FTPListDetail> GetDirectoryListing(string rootUri)
    var CurrentRemoteDirectory = rootUri;
    var result = new StringBuilder();
    var request = GetWebRequest(WebRequestMethods.Ftp.ListDirectoryDetails, CurrentRemoteDirectory);
    using (var response = request.GetResponse())
    using (var reader = new StreamReader(response.GetResponseStream()))
    string line = reader.ReadLine();
    while (line != null)
    result.Append(line);
    result.Append("\n");
    line = reader.ReadLine();
    if (string.IsNullOrEmpty(result.ToString()))
    return new List<FTPListDetail>();
    result.Remove(result.ToString().LastIndexOf("\n"), 1);
    var results = result.ToString().Split('\n');
    string regex =
    @"^" + //# Start of line
    @"(?<dir>[\-ld])" + //# File size
    @"(?<permission>[\-rwx]{9})" + //# Whitespace \n
    @"\s+" + //# Whitespace \n
    @"(?<filecode>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<owner>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<group>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<size>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<month>\w{3})" + //# Month (3 letters) \n
    @"\s+" + //# Whitespace \n
    @"(?<day>\d{1,2})" + //# Day (1 or 2 digits) \n
    @"\s+" + //# Whitespace \n
    @"(?<timeyear>[\d:]{4,5})" + //# Time or year \n
    @"\s+" + //# Whitespace \n
    @"(?<filename>(.*))" + //# Filename \n
    @"$"; //# End of line
    var myresult = new List<FTPListDetail>();
    foreach (var parsed in results)
    var split = new Regex(regex)
    .Match(parsed);
    var dir = split.Groups["dir"].ToString();
    var permission = split.Groups["permission"].ToString();
    var filecode = split.Groups["filecode"].ToString();
    var owner = split.Groups["owner"].ToString();
    var group = split.Groups["group"].ToString();
    var filename = split.Groups["filename"].ToString();
    var size = split.Groups["size"].Length;
    myresult.Add(new FTPListDetail()
    Dir = dir,
    Filecode = filecode,
    Group = group,
    FullPath = CurrentRemoteDirectory + "/" + filename,
    Name = filename,
    Owner = owner,
    Permission = permission,
    return myresult;
    And then this method to loop over and listing :
    private int total_dirs;
    private int searched_until_now_dirs;
    private int max_percentage;
    private TreeNode directories_real_time;
    private string SummaryText;
    private TreeNode CreateDirectoryNode(string path, string name , int recursive_levl )
    var directoryNode = new TreeNode(name);
    var directoryListing = GetDirectoryListing(path);
    var directories = directoryListing.Where(d => d.IsDirectory);
    var files = directoryListing.Where(d => !d.IsDirectory);
    total_dirs += directories.Count<FTPListDetail>();
    searched_until_now_dirs++;
    int percentage = 0;
    foreach (var dir in directories)
    directoryNode.Nodes.Add(CreateDirectoryNode(dir.FullPath, dir.Name, recursive_levl+1));
    if (recursive_levl == 1)
    TreeNode temp_tn = (TreeNode)directoryNode.Clone();
    this.BeginInvoke(new MethodInvoker( delegate
    UpdateList(temp_tn);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    foreach (var file in files)
    TreeNode file_tree_node = new TreeNode(file.Name);
    file_tree_node.Tag = "file" ;
    directoryNode.Nodes.Add(file_tree_node);
    numberOfFiles.Add(file.FullPath);
    return directoryNode;
    Then updating the treeView:
    DateTime last_update;
    private void UpdateList(TreeNode tn_rt)
    TimeSpan ts = DateTime.Now - last_update;
    if (ts.TotalMilliseconds > 200)
    last_update = DateTime.Now;
    treeViewMS1.BeginUpdate();
    treeViewMS1.Nodes.Clear();
    treeViewMS1.Nodes.Add(tn_rt);
    ExpandToLevel(treeViewMS1.Nodes, 1);
    treeViewMS1.EndUpdate();
    And inside a backgroundworker do work how i'm using it:
    var root = Convert.ToString(e.Argument);
    var dirNode = CreateDirectoryNode(root, "root", 1);
    e.Result = dirNode;
    And last the FTPListDetail class:
    public class FTPListDetail
    public bool IsDirectory
    get
    return !string.IsNullOrWhiteSpace(Dir) && Dir.ToLower().Equals("d");
    internal string Dir { get; set; }
    public string Permission { get; set; }
    public string Filecode { get; set; }
    public string Owner { get; set; }
    public string Group { get; set; }
    public string Name { get; set; }
    public string FullPath { get; set; }
    Now the main problem is that when i list the files and directories and display them in the treeView it dosen't get/display
    the files in the root directory. Only in the sub nodes.
    I will see the files inside hello and stats but i need also to see the files in the root directory.
    1. How can i get and list/display the files of the root directory ?
    2. For the test i tried to add to a List<string> the items in var files to see if i get the root files at all.
       This is what i tried in the CreateDirectoryNode before it i added:
    private List<string> testfiles = new List<string>();
    Then after var files i did:
    testfiles.Add(files.ToList()
    But this is wrong. I just wanted to see in testfiles what items i'm getting in var files in the end of the process.
    Both var files and directoryListing are IEnumerable<FTPListDetail> type.
    The most important is to make the number 1 i mentioned and then to do number 2.

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • ITunes Match error: iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again.

    I have just subscribed to iTunes Match, and get the above error message.  I have signed out and signed in several times, and still get the same message.  Can anyone help with a solution?

    I have Just upgraded my mac from Itunes 11.0 to itunes 11.02, this issue occured within hours of the updated.
    It seems to occur about every couple of hours for me, I can still access the apple store, but music match just dies with the message: "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again."
    As it takes a good ten minuites for itunes
    If this is also occuring in Itunes 11, the previous Discussions are probably not relevant.
    Itunes 11 has had significant changes applied, so it would be reasoble to assume this is not the same fault and Apple have some how broken Itunes again.
    I might try to downgrade to itunes 11.0, as it looks like music match faults are not high on apples priorities, it looks like took them almost a year to fix this fault last time it occured.

  • I receive daily emails from the NY Times, which I read from my Ipad. Some of the emails will show all of the stories available, and some will only show a few lines in the body and the rest of the email is blank. Any ideas of what I need to do to fix this?

    I receive daily emails from the NY Times, which I read from my Ipad. Some of the emails will show all of the stories available, and some will only show a few lines in the body and the rest of the email is blank. Any ideas of what I need to do to fix this?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

  • I tried to rent a film on my MacBook but it comes up with, In order to rent, you need to authorise this computer. To authorise this computer, select "Authorise Computer..." from the store menu. Where is the store menu and how do I sort it?

    I tried to rent a film on my MacBook but it comes up with, In order to rent, you need to authorise this computer. To authorise this computer, select "Authorise Computer..." from the store menu.
    Where is the Store menu and how do I authorise my computer?
    Please help.
    Thank you.

    Move the cursor to the very top of the computer's screen, click on Store in the menu bar, and choose Authorize this Computer.
    (115518)

  • TS3297 itunes match and when I try to add my main computers music library I see "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again." but signing back in always results in the same

    I just purchased itunes match and when I try to add my main computers music library I see "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again." but signing back in always results in the same error message. Somebody has to have an answer to this.

    Did you try setting itunes to run with administrator privileges? 
    Since I changed that I no longer have this issue

  • ITunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again.

    Every few hours I receive this error message:
    "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again."
    Is there someone who knows how this could be solved?
    [Update]
    I see that there is already a discussion on this issue: https://discussions.apple.com/thread/3502994?start=0&tstart=0
    Message was edited by: mickniepoth

    I have Just upgraded my mac from Itunes 11.0 to itunes 11.02, this issue occured within hours of the updated.
    It seems to occur about every couple of hours for me, I can still access the apple store, but music match just dies with the message: "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again."
    As it takes a good ten minuites for itunes
    If this is also occuring in Itunes 11, the previous Discussions are probably not relevant.
    Itunes 11 has had significant changes applied, so it would be reasoble to assume this is not the same fault and Apple have some how broken Itunes again.
    I might try to downgrade to itunes 11.0, as it looks like music match faults are not high on apples priorities, it looks like took them almost a year to fix this fault last time it occured.

  • HT4914 When I put suscribe it apears this message iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again.

    When I put suscribe it apears this message iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again.

    I have Just upgraded my mac from Itunes 11.0 to itunes 11.02, this issue occured within hours of the updated.
    It seems to occur about every couple of hours for me, I can still access the apple store, but music match just dies with the message: "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again."
    As it takes a good ten minuites for itunes
    If this is also occuring in Itunes 11, the previous Discussions are probably not relevant.
    Itunes 11 has had significant changes applied, so it would be reasoble to assume this is not the same fault and Apple have some how broken Itunes again.
    I might try to downgrade to itunes 11.0, as it looks like music match faults are not high on apples priorities, it looks like took them almost a year to fix this fault last time it occured.

  • I have been using Itunes on my HP laptop for 12 months and over the past month have not been able to access the Itunes store or any of the Itunes Help type menu's. When in Itunes I click on the Store icon and the top middle box gets to Half way. Pls help

    I  have been using Itunes on my HP laptop for 12 months and over the past month have not been able to access the Itunes store or any of the Itunes Help type menu's. When in Itunes I click on the Store icon and the top middle box gets to Half way. Pls help

    I had the same tried loads of fixes
    saw this on the community from whatheck
    In windows 7 click on your start menu, go to the accessories, right click on the command icon and choose "run as administrator"
    Once it opens type the following command...
    netsh winsock reset
    Hit enter and it should say something like winsock reset successful now reboot your computer
    IT WORKED....... cleared all the "action2 on the CPU and loads IStore perfectly

  • I went to the apple store to get a power cord for my husband's mac pro and the technician gave me a power adapter instead. My husband has a conference call before the stores open and I can exchange the adapter but he needs power for his computer before th

    My husband needs a new power cord for his Mac Pro. I went to the apple store and the clerk gave me a power adapter by mistake. He has a conference call before the store opens and I can't get him another power cord. Is there a way to power up his computer?

    You posted in the MacBookPro forum. Is this a Mac Pro or MacBook Pro? If it's the latter, it has a battery.

  • HT204053 does anyone have this problem we have a second hand phone and have got an apple id account but when we sign in to itunes store it tells us that we havent made a purchase from the store yet and wont sign us in help please

    hi we have recently got an iphone 3gs from a family member and we have set up an apple id account and verified the email but when we try to sign in to itunes store it tells us we havent used the store yet and wont let us sign in please help us with this problem

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Does logic 9 from the app store have everything that you would get if you were to buy it in the store?, and are you able to upgrade to studio later on?

    does logic 9 from the app store have everything that you would get if you were to buy it in the store?, and are you able to upgrade to studio later on?

    lucafromvinkeveen wrote:
    does logic 9 from the app store have everything that you would get if you were to buy it in the store?, and are you able to upgrade to studio later on?
    Hi
    Logic Studio is not available anymore, so unless you can find an "old stock" copy somewhere, you will never be able to upgrade in the future.
    Logic Pro 9 has all the content from the Studio box available for download, with the exception of the 20G of Soundtrack Pro content. Soundtrack Pro is no longer available at all.
    Logic Studio also contained several other applications: Mainstage, Compressor (available separately from the AppStore), Waveburner (no longer available), plus some other utilities.
    CCT

  • Coldfusion webroot and multiple domain names

    Hi All -
    I am new to this multiple domain thing. Am working on a project, where there multiple domain projects under on webroot. Like www.abc.com, www.def.com under one root. The folder structure is something like below:
    E:
    webroot
        --INCLUDES
        --IMAGES
          --image.gif
          -- www.abc.com
             --folder1
               --index.cfm
          -- www.def.com
    So the above two diff domains share two common folders. When I use an include file of form .cfm, I can get it to work. But somehow the images are not displayed. I tried the following syntaxes
    Suppose I want to access images from index.cfm under www.abc.com/folder1, i tried the following:
    <img src="../../IMAGES/image.gif">(does not work)
    <img src="E:/webroot/IMAGES/image.gif) (also does not work. The image symbol is shown but the entire image is not shown).
    Any thoughts on how to get this working?

    It's probably important to shift your thinking a bit here.  Theer are two different "roots" here (well: three, if you're looking at a default IIS install):
    * CF root;
    * web site root;
    * a directory called wwwroot
    Looking at your example:
    webroot    --INCLUDES
        --IMAGES
          --image.gif
          -- www.abc.com
             --folder1
               --index.cfm
          -- www.def.com
    webroot (which I am guessing is your C:\inetpub\wwwroot dir) in this case is not your "web root", it's your CF root, by the looks of it.  And the directories www.abc.com and www.def.com are your web roots for those two sites.
    Confusion often arises here because when one configures CF, the CF root is often mapped to C:\inetpub\wwwroot (or the htdocs dir or whatever the web root is of the web server's default site), so it seems like there's just the one "web root".  But there isn't.
    So CF will look for resources in the CF root; the web server will look for resources in the web root of the site being served.
    In your example, the websites cannot access IMAGES, because that directory is not in the web root of the site.  As someone else has suggested, you need to add a virtual directory within the website to map to the IMAGES dir.
    You cannot use .. notation to navigate up the file system to "above" the web root, because as far as the web site is concerned, the www.abc.com dir is the ROOT directory.  IE: that's as far up the file system the site can access.
    The reason why you E:\[etc] path does not work is because that path is requested by the web browser, which is going to be on a completely different computer to where the E: drive is.  The path needs to be a URL.
    Adam

  • The event library and multiple users in the classroom

    Is there any way I can stop the event library loading old footage or footage from another project in imovie. Is there any way i can have 3 or 4 movies on the go in separate files.
    I have ten macbooks for my class of thrity kids. We have two users on the computer Admin and Student. All students use the student side, every time imovie opens it gets old footage and events from iphoto and by the end of each term there is 8 to 10 gigs of footage on the go at any one time. imovie HD allowed save, file open and movement of movies. imovie 08/09 seems brilliant for snow boarders and you tubers but not the classroom. Really we would love an editing package that allows attachment of camera and work for a couple of weeks on a project while others do the same thing on the same mac. Please don't suggest multiple users we have over 200 macs and 600 students.

    Without multiuser, the only of having an exclusive event library for each student would be either external drive, or a blank disk image to store iMovie events. I can imagine a large network drive that has 50GB size disk images for each students. You mount your image to work with your footage.
    By the way you can move event library to other drive within iMovie, so you can back up and disconnect external drive to unclutter event library.

  • IWeb 1.1(.1) and multiple Domain.sites

    There are (still) a lot of references to Domain.sites resides in ~/Library/Application Support/iWeb folder, this is no longer true with iWeb 1.1(.1).
    iWeb 1.1(.1) can handle multiple Domain.sites, and once you double click a Domain.sites outside of ~/Library/Application Support/iWeb folder, ~/Library/Application Support/iWeb folder is no longer needed (unless you double click the Domain.sites inside ~/Library/Application Support/iWeb folder, again).
    Once you double click a Domain.sites outside of ~/Library/Application Support/iWeb folder, you can move iWeb folder out of ~/Library/Application Support folder, and iWeb WON'T create another ~/Library/Application Support/iWeb folder.
    huh?

    iWeb 1.1.x multiple domains handling is quite low
    key, and for a good reason. Although, iWeb 1.1.x can
    handle multiple Domain.sites, however, there is no
    way (that I know of) to create a fresh Domain.sites
    from iWeb.
    Some one prove me wrong, please.
    Hmmmmm, I AM able to create a new Domain.sites file using iWeb 1.1.1; see this Apple support article:
    http://docs.info.apple.com/article.html?artnum=303670
    I've got a number of different sites that I had been keeping in different folders in a new folder that I named "Sites" that I kept where the default Domain.sites file was stored, i.e.,
    for "Site1": ~username/Library/Application Support/iWeb/Sites/Site1/Domain.sites
    for "Site2": ~username/Library/Application Support/iWeb/Sites/Site2/Domain.sites
    etc.
    Prior to version 1.1.1, when I'd open one of the Domain.sites files, iWeb would automatically create a Domain.sites file in the ~username/Library/Application Support/iWeb folder, then when I was done making changes to that file, I'd have to copy it back into the subfolder. Now with version 1.1.1, iWeb does NOT create a new file but rather just uses the Domain.sites file from where it is opened and makes that the new default location. To create a new site, just move this folder containing the Domain.sites file that iWeb now uses as the default to a different location and start iWeb by clicking on the iWeb application: you'll then get a new site. If the last opened Domain.sites file was in the username/Library/Application Support/iWeb folder, then moved to a different location, and then you open iWeb by clicking on the iWeb application, you will be prompted to either "Quit", "Create Domain…", or "Choose Domain…"; click "Create Domain…" and you'll then be asked to choose a location for a new Domain file; select a new location then iWeb opens with a new site.
    Hope I'm making sense.
    Bob
    20" iMac G5   Mac OS X (10.4.6)   1.8 GHz PowerPC G5; 1 GB RAM

Maybe you are looking for

  • Custom error in outbound idoc FIDCC1

    Hi all, I am generating outbounds idocs for FI documents and i need to put some of them in error. I need the FI Document created and the idoc in error so that i can reprocess it later. To do that i am using the User Exit EXIT_SAPLF050_007 Enhancement

  • T500 Dropping Wireless Connection

    Hi, all. My T500 has been doing this for a while. I finally got around to actually posting about it. Some background info: computer has the Intel Centrino 5100 wireless card, router is a Linksys / Cisco WRT54G2. Under device manager, all wireless wif

  • ERROR IN POSTING GOODS ISSUE..

    HI ALL, I WANT TO GET INFORMATION FOR HOW TO SOLVE THE ERROR.. WHEN I AM GOING FOR POSTING GOODS ISSUE, BEFORE THAT I MAINTAINED CONTROLLING AREA, COST CENTER, COST ELEMENT FOR MY COMPANY. SO AFTER THAT I WENT TO MB1A (GOODS ISSUES) TO POST THE GOODS

  • After i install mac iOS 10.9 my tarckpad out of may control and do automatic work that i don't want do it

    after I install new version of mac osx 10.9 my trackpad is out of my control and Do anything tahat i want do them

  • Cannot import in lightroom 5

    I'm having difficulty importing "some" files into Lightroom 5.  These are files located on my computer.  They were originally in my external drive, so I copied them to the desktop. Still can't import.  The program goes through the motion, then an err