IMAP and sub folders and (messages)

I recently added many folders from on "On My Mac" sidebar to my MobileMe sidebar which is using IMAP.
Now I have a few dozen folders inside my MobileMe IMAP account and consequently it is a bit chaotic when I check my mail. The activity window goes on for quite awhile syncing, checking and copying my mail.
I guess what I am curious about it the following:
Is there a limit to how many folders and subfolders I should use in MobileMe IMAP? What I mean by limit is, what is too much?
I have my GMAIL account setup as well through MobileMe. It seems a lot of time is spent syncing between my MobileMe and GMAIL, what is the best setup for this? By best I mean, the most economical setup between GMAIL and MobileMe to ensure redundant copies and synced mail boxes?
In Apple Mail I have certain folder that now have duplicate sub folders, where one has the suffix (messages). What is the difference and what should I do to get rid of these duplicate subfolders? In other words, inside Apple Mail I have a folder called "Business" inside that are a number of subfolders, many of the are duplicated one being called "Business GTD" and the next "Business GTD (messages)"
Thanks very much for any and all help.
Henry

IMAP, IMAP .. fun stuff hey!
OK .. since your running IMAP you MUST be checking mail at various locations (remote or not). You could be using various computer to check IMAP mail also. OK .. step one ... IMAP is not a protocol
used or intended for a client mail application to be running at multiple locations simultaneously,
which is the MAJOR drawback versus a regular POP mail account. Make sure ALL other mail clients
are QUIT and config'ed properly at each location. You can and should only use one open client at each location each time. IF more than one mail client is running you will get these PROBLEMS all the time!!! See each open client wants to load (populate) ALL the IMAP info at one time once its running. IF setting's not correct two open mail clients will fight and clash to download your mail
me friend ... GL ~ macxtech a.k.a macunix2001@yahoo
Message was edited by: xtech

Similar Messages

  • Mail won't detect IMAP sub folders

    I have several subfolders in my INBOX (INBOX.read, INBOX.sent, INBOX.todo, ...). Mail.app doesn't detect those sub folderds on startup. Only way to access the sub folders is to create new sub folder for INBOX. When I close the Mail.app or lose network connection, I have to create again new sub folder to be able to expand the INBOX.
    This is really annoying and makes Mail.App unusable for me because Spotlight reindexes the subfolders every time When Mail.App detects them. Reindexing takes about 10 minutes and 100% of my processor time...
    I have been told that this bug has existed for a long time . Why doesn't it get fixed? What is the recommended workaround?
    15.2" PowerBook   Mac OS X (10.4.4)  

    Thanks for the clarification.
    Please confirm that About Mail reports version 2.0.5?
    Make sure to have quit Thunderbird and Mail, and then in the Finder open Home/Library, and duplicate the Mail folder, and drag the copy to your Desktop, strictly for temporary backup. Next open the original Mail folder, and find the IMAP account folder for this account, and delete it. Empty the trash following this.
    Next, open Home/Library/Preferences, and find the com.apple.mail.plist file, and drag it to the Desktop (where you will most likely later delete it).
    Start Mail, and re-enter/set up your account (this should have resulted in Mail opening as new -- if not post back immediately about that), and DECLINE to import anything, even if prompted to. Test, and let me know what you experience with the issue.
    This procedure should have little risk, since 1) you are using IMAP and messages on the server are not lost. 2) On My Mac mailboxes are not impacted, and 3) you have made a backup just in case.
    It is possible that your particular IMAP provider and Mail have some incompatibilities, but I am using two IMAP at the moment, and both work. However, they each appear to treat folders differently.
    All the best.
    Ernie

  • How to get folders from your server using IMAP and push, 3G.

    After looking all over this forum looking for an answer, I found out on my own. here's how:
    Step 1: Login to your email server.
    - If you can, log into your email server via webmail. This ensures that you are in fact connected to your email server and your folders are being created. If your email server doesn't have webmail, then create the folders using whatever email app you have on your PC or Mac.
    Step 2: Creating the folders.
    - All the folders you want to have show up on your iphone must be created as sub-folders under your Inbox folder on the server. Here's what mine looks like for example.
    Mailbox
    -Inbox
    ++-Sent Messages
    ++-Deleted Messages
    ++-Friends
    ++-Work
    ++-Others
    -Drafts
    -Sent
    -Deleted
    -Junk Email
    *you may be wondering why I have 2 sent and Deleted folders. I have it set up so that the folders in the inbox are for the iphone, and the ones outside are from Outlook.
    Step 3: Getting the folders to show up on the iphone.
    - Once you set up your IMAP account on the iphone 3g, simply log into the account, wait for it to finish checking for emails, then tap the Inbox button. Give it a few seconds to load if it's loading something. After it finishes, back out by tapping the 'Mailboxes' in the top-left corner, and your folders should be there.

    So you'd use Java to send the WebDAV protocol. Since this is a Java forum, it would help if you provided the WebDAV part of the equation and we can help with the Java part. Okay? Let us know when you have the WebDAV information.

  • Deleting all inherit sub-folders permission and reassigning to specific group

    Hi,
    i am trying to assign sub-folders level permission in sharepoint document library. Want to delete all previous inherit permission first and then assign  sub-folders permission to specific group. i am having problem with following code, cannot make a
    call to the function. Could you tell me what should i modify the code to work properly.
    Thanks in advanced
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.SharePoint;
    namespace ManageFolderLevelPermission
        class FolderLeverPermission
            static void Main(string[] args)
                //Connect to Sharepoint Site
                SPSite oSPSite = new SPSite("http://nyc01d1sp:8080/");
                //Open Sharepoint Site
                SPWeb web = oSPSite.OpenWeb("/hr/DI/");
                //Get the Sharepoint list item for giving permission
                foreach(SPFolder folder in web.GetFolder("http://nyc01d1sp:8080/hr/DI/docs/").SubFolders);
                setPermissions();
            private static void setPermissions(SPFolder folder,SPSite oSPSite, SPWeb web)
                SPGroupCollection spc = web.SiteGroups;
                //Break the role inheritance in order to assign individual rights on folders
                if (!folder.Item.HasUniqueRoleAssignments)
                    folder.Item.BreakRoleInheritance(true);
                while (folder.Item.RoleAssignments.Count > 0)
                    try
                        folder.Item.RoleAssignments.Remove(0);
                    catch (Exception)
                        break;
                //Role Assignment For the Current User
                SPUser CurrentUser = SPContext.Current.Web.CurrentUser;
                SPGroup group = spc["GroupName"];
                SPRoleAssignment roleAssignment = new SPRoleAssignment((SPPrincipal)CurrentUser);
                roleAssignment.RoleDefinitionBindings.Add(web.RoleDefinitions.GetByType(SPRoleType.Administrator));
                folder.Item.RoleAssignments.Add(roleAssignment);
                //Role Assignment for the Group "Contentteam - Management"
                roleAssignment = new SPRoleAssignment((SPPrincipal)group);
                roleAssignment.RoleDefinitionBindings.Add(web.RoleDefinitions.GetByType(SPRoleType.Administrator));
                folder.Item.RoleAssignments.Add(roleAssignment);            
                oSPSite.AllowUnsafeUpdates = true;
                folder.Item.Update();

    Hi Hemendra,
    Thanks for your reply. Actually i am trying to do two things here. First i am creating sub-folders using following code. And then trying to assign individual group permission on these sub-folders using following Powershell script. Now problem is when i am
    creating sub-folders, its also inheriting all the parent permission. Lets say i have customer folder name "Pepsi" and it has 4 sub-folders (like Account Management, Legal Drafts, Executed.. etc) . Now i want to assign individual group permission to each Sub-folder
    but root folder (Pepsi) should remain all the parent permissions. i did try to remove the permission first and then assigned permission to sub-folders. i was able to assign individual group permission to sub-folders but problem is, its also assigning Limited
    Access to the root folder. so basically i cannot see the folder as the root folder has limited access. Please let me know how can achieve that.
    using System;
    using System.Collections.Generic;
    using Microsoft.SharePoint;
    namespace Add_SubFolders
        class CreateFolders
            static void Main(string[] args)
                var foldersList=new List<string>();
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        using (SPSite site = new SPSite("http://nyc01d1sp:8080/"))
                            using (SPWeb web = site.OpenWeb("/lel/DB/"))
                                web.AllowUnsafeUpdates = true;
                                    foreach (SPFolder folder in web.GetFolder("http://nyc01d1sp:8080/lel/DB/docs").SubFolders)
                                        if (folder.Url.ToString() != "/docs/Forms" && folder.Url.ToString() != "/docs/")
                                            foldersList.Add(folder.Url);
                                            SPFolder subFolder = web.GetFolder(folder.Url);
                                            Console.WriteLine("SubFolder is creating.....");
                                            subFolder.SubFolders.Add("Account Management");
                                            subFolder.SubFolders.Add("Legal Drafts");
                                            subFolder.SubFolders.Add("Executed");
                                            subFolder.SubFolders.Add("Sales");
                                        folder.Update();
                                        Console.WriteLine("SubFolder has been created");
                                    web.AllowUnsafeUpdates = false;
                    catch (Exception ex)
                        ex.Message.ToString();
      Power Shell Script to assign individual group to specific folders:
    Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
      #$site = new-object Microsoft.SharePoint.SPSite("http://nyc01d1sp:8080/lel/DB/")
      #$site = Get-SPSite ("http://nyc01d1sp:8080/")
      $web= Get-SPWeb("http://nyc01d1sp:8080/")
      #$web = $site.OpenWeb()
      function GrantGroupPermission($groupName)
       [Microsoft.SharePoint.SPGroupCollection]$spgroups = $web.SiteGroups
       [Microsoft.SharePoint.SPGroup]$spgroup = $spgroups[$groupName]
       Write-Host $spgroup.Name -ForegroundColor Red
       $sproleass=new-object Microsoft.SharePoint.SPRoleAssignment([Microsoft.SharePoint.SPPrincipal]$spgroup)
       $folder.BreakRoleInheritance("true")
       $sproleass.RoleDefinitionBindings.Add($web.RoleDefinitions["Contribute"])
       $folder.RoleAssignments.Add($sproleass);
       Write-Host "Permission provided for group ", $groupName
      $doclib=[Microsoft.SharePoint.SPDocumentLibrary]$web.Lists["Shared Documents"]
      $foldercoll=$doclib.Folders;
      foreach($folder in $foldercoll)
       Write-Host $folder.Name
       if($folder.Name.Equals("Account Management"))
        GrantGroupPermission("Test Group")
       if($folder.Name.Equals("Executed"))
        GrantGroupPermission("Legal Group")
       if($folder.Name.Equals("Legal Drafts"))
        GrantGroupPermission("Legal Group")
       if($folder.Name.Equals("Sales"))
        GrantGroupPermission("Sales Group")
      Write-Host "Completed...."
      $web.Close()
      $web.Dispose()
      #$site.Dispose()

  • Yosemite: Mail folders moved and messages disappear

    OS X 10.10.1 on a Mac Mini 2.6 GHz, 8gb RAM, 1tb HD, Gmail setup as IMAP in Mail, personal mail folders sorted alphabetically
    Intermittently while moving Inbox messages to personal folders, or opening messages in personal folders, the folders will drop to the bottom of the folder list and messages within the folders will disappear. Rebuilding the mailbox will usually make the messages appear, however the personal folders have to be moved back to their original positions. These instances have occurred frequently enough to be annoying and time wasting. Please advise. Thanks.

    Quit Mail. Force quit if necessary.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens by pressing command-V, then press return.
    A folder window will open. Inside it there should be files with names as follows:
              Envelope Index
              ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK. Typically, the process takes a few minutes, but it may take hours if you have gigantic mailboxes. In that case, you may be able to speed things up by temporarily adding your home folder to the Privacy list in the Spotlight preference pane. Remove it when Mail has finished importing.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • Sub-folders and synching from hotmail/windows live mail

    Hi there
    I have a hotmail account which I use via my home laptop through Windows Live mail. I have various sub-folders in my hotmail which also appear in my Windows Live mail.
    Whilst I can access my inbox and sent items from my iphone I cannot see my subfolders which I need to distribute a large amount of mail to.
    Can anyone tell me how I can get these folders to appear on my iphone (3 - not sure which OS).
    Also, when I delete items from my iphone they do not delete on my hotmail/live mail. Is there a way of addressing this?
    Thanks!!

    To do what you want, you need the mail account to be set up as IMAP, which syncs the contents of the server with your device. It sounds like yours is set up as POP, which doesn't work that way.
    I've lost touch with Hotmail, but I saw this which might help (you'll need to set up a new mail account on the phone to make it work)
    http://www.sirslur.com/2010/09/01/hotmail-has-imap-and-works-on-iphone/

  • IMAP and Mail 3.5 not importing/moving messages to upper 'INBOX'

    Within the last 3 months I finally got an iPhone. This event caused me to change my POP email accounts to IMAP. I have a total of 5 email accounts. They were all POP and are now all IMAP and have been this way for a couple of months.
    2 of these accounts are Gmail accounts, one is a dot.mac, and 2 are with an independent web host that does support IMAP.
    I have the inbox in the top left with a 'folder' for each account. I then have a list of all my folders I use for local filing. I then have a folder for each IMAP account at the bottom of the list. For the Gmail account there is a nesting of folders. And inside of each folder is typically a 'sent' and 'trash' folder.
    The issue I am seeing with new mail coming into my computer is this.
    New mail will come into the IMAP folder and SOMETIMES be put in the upper INBOX. There really is no rhyme nor reason as to why the messages do not show up in the top INBOX consistently. It appears to be doing this with all accounts.
    One behavior I am able to replicate is this. If I dig into one of the bottom IMAP folders to find an email message that is unread and NOT in the upper INBOX and click on it to read it, THEN go to the upper INBOX the message will now show up as READ.
    I can replicate this with every unread email that does not show up in the upper INBOX.
    First, why show me the folders at the bottom? If they absolutely need to be there why will they not consistently show or 'move' the unread message into the upper INBOX?
    Anyone have insight or suggestions on what I can do to resolve this?
    I would like to NOT lose anything I have presently set in mail.
    Let me know if you have any questions that can help explaining further.

    Oh yes, sorry for the partial answer.
    No, I there is no difference whether the emails have an attachment or not, and though a few days ago it seemed to be an on-and-off problem, it seems now that any new email (attachments or no), refuse to hit the INBOX folder.
    As far as selections for keeping messages, I do break a bit from the Gmail mailbox behaviors, but only for junk mail, since I rarely use the google web app, and want to confirm junk mail is being labelled properly. All enabling junk mail does for me, basically, is give me a Junk folder in Mail.app that I can point Gmail/Junk to use. Apple Mail rarely picks up its own Junk since Gmail catches it first.
    Drafts - stored on server (checked)
    Notes - stored on server (checked)
    Sent - stored on server (checked - only because I'll click on [Gmail]/sent mail and have it used as the Sent folder.)
    Junk - stored on server (never causes copy problems or slowness, Gmail, as i said, catches junk/spam first). Delete after 1 day.
    Trash - Move deleted messages to Trash mailbox (checked), Store Deleted messages on Server (checked). Permanently delete after 1 week.

  • Exchange email folders and sub-folders: iPhone only pulling main "inbox"

    Hello.
    I've got iPhone set to access my Exchange email via IMAP. My work computer is an Win XP PRo, running Outlook 2007. My Outlook email folders are organized via rules that most important emails are automatically routed to specific folders (such as from a particular client or staff member).
    My problem is The iPhone is only checking for mail in my main inbox. The only way I can get it to check for mail in my sub-folders is to click on the folder. This is a big problem, as I am missing notifications, and have over 35 subfolders!
    I've tried and tried to find a setting I can change, or something...but cannot. Does anyone have any recommendations either via iPhone settings or my Outlook rules settings?
    Thanks so much in advance!
    Sovi

    Thanks for posting that thread. My problem is slightly different in that it won't pull the mail *at all* -- even to the inbox. The mail is only pulled if/when I click on the sub-folder. At that point, the mail goes go to the correct sub-folder.
    For obvious reasons this is an issue -- I miss lots of mail!
    I (we) can't be the only ones using sub-folders with this issue.

  • IMAP and deleting messages from the server

    Anyone else trying to use IMAP in the default mail app and seeing that messages deleted locally are not removed from the server?
    I found a lot of posts about this issue on older Android versions and devices, but nothing for the Bionic yet.
    And unlike for POP accounts, there is not an option in the settings to turn this on. IMAP is all about keeping messages and folders in sync between multiple clients, so this is an annoying bug.
    I have been using K-9 as a work around, but I'd rather not use two different mail programs, and don't like the look/feel of K9 as much either.

    DCZim,
      Are you using IMAP or POP?  Also, are you using a popular public IMAP service like GMail, MSN, etc. that can be "auto configured" without having to manually enter the server name?
      Per Google the IMAP bug (which has been fixed some time ago in the Android Mail app but not yet in Motorola's Blur mail app) is triggered by visiting the incoming server settings for the account.
      IMAP's entire purpose it to keep everything in sync between multiple devices/clients.  If you want to delete messages on your phone without deleting them from the server, you should use POP3 instead of IMAP and ensure you have the client configured to NOT remove messages from the server when deleted locally and to always "leave a copy of message on the server".  This is a general concept of POP3, nothing specific to the Bionic, Blur, or Android.

  • I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    ok sorry everyone but i solved it myself but the solution is so nuts i've posted it here to help others who have the same problem.
    to setup a comcast imap account on your iphone:
    go to mail, contacts, etc in settings
    under accts, select add account
    select "other"
    new screen, choose "add mail account"
    now on the new acct screen you must enter your name, email address and password for your GMAIL acct ! (yes i said your gmail acct !, or some other acct with a NON comcast address).
    hit next
    then the acct verifies
    when verified a screen will open with all the acct settings for this acct AND @ the top of the screen are the 2 buttons > imap or POP
    select imap and THEN CHANGE ALL THE ACCOUNT information to the comcast account !
    then hit next and the account will take a couple minutes to verify but it will verify and now you have a comcast imap acct set up on your iphone.  The problem must be that when the iphone sends the initial verify acct info to comcast (if you enter that information first) the comcast server is simply not setup yet to signal the iphone that there is an imap option.

  • Firefox 10.0 - Google Gmail Folders and Messages no longer work

    I'm running Vista Home, on a laptop. This problem started about 4 days ago and no new applications had been downloaded or added prior to this problem occurring. Whenever I try to open a folder of messages within my Google Gmail accounts, the list of messages open briefly and then reduce to a single message only, and all other messages are not accessible. It is not consistent throughout my Gmail folders/messages. It seems very random. But the Gmail folders and messages read fine when I open them in Explorer or Safari. I have always used Firefox with my Gmail until now. If I can uninstall the newer version of Firefox will this correct the problem? If not, is there a solution?

    Contact IBM Lotus Notes support about that problem. <br />
    http://www-947.ibm.com/support/entry/portal/Overview/Software/Lotus/Lotus_Notes

  • I am struggling! Help! I need to move 3500 pics-in TIFF format in 175 folders and sub folders from my old PSE6, Windows XP to my new PSE13, Windows8.1. I have the PSE6 backed up on an external hard drive. What is the safe way to do this? Can anyone at Ado

    I am struggling! Help! I need to move 3500 pics-in TIFF format in 175 folders and sub folders from my old PSE6, Windows XP to my new PSE13, Windows8.1. I have the PSE6 backed up on an external hard drive. What is the safe way to do this? Can anyone at Adobe help me? Please?

    Use the Organizer backup & restore method, starting the restore from the TLY file. Probably best to use a custom location as the XP file structure will be different. See this link for further help:
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html

  • How do I stop iTunes from creating duplicate entries and sub-folders?????

    I am SOOO SICK AND TIRED of iTunes deciding to create sub-folders all the time. I just want to have one big folder and throw all my music into it. I have now spent several weeks trying to re-create my music library after my hard drive crashed, and iTunes keeps messing everything up.
    If I let iTunes do what it wants, I end up with two or three copies of each song. If I try to consolidate my files by deleting extra copies of songs, suddenly iTunes can't "find" anything.
    When I go looking for the "missing" songs, iTunes creates endless fractal layers of folders within folders.
    I AM SICK OF THIS!
    I AM ABOUT TO ABANDON ITUNES AND GO BACK TO WINDOWS MEDIA PLAYER.

    CodeVII wrote:
    Why when you have a large number of files it is better to have them in sub-folders???
    Unchecking both those options still doesn't stop Itunes from putting files in Artist and Album folders..
    The problem I see with putting music files in folders is if you want to move them or change the file properties with just the Operating System they take longer to access. So quicktime seems like something I'd try but....
    I'd like to have the option to have my files in one Folder/Directory.
    iTunes really wants you to use iTunes to manage the iTunes library. If you use the operating system or third party tools to modify tags, iTunes won't detect the change until it has some reason to access the tag, e.g. during playback. In contrast WMP will sniff out changes in your tags and update itself automatically.
    Once you've got your media in iTunes why do you need to access it again at the folder level? As it happens I'm quite obsesive over the structure of my files both logical and physical (see grouping & scripts) but I strongly recommend others to avoid the temptation to waste too much time over the physical layout and leave iTunes to get on with it...
    Many other programs have offered choices for folder structure, invalid character replacement etc. over many years without iTunes joining in. I suspect that the developers of iTunes have long since decided that extra choice in this area isn't necessary since "it just works", though by all means drop a line to iTunes Feedback.
    tt2

  • Sub folders and Process multiple files in Photoshop Elements 10

    I am looking to apply the same adjustments to numerous images in numerous sub-folders and overwrite the original images.
    Using the Process Multiple Files options,  I added the main folder (which contains no images) to the Source field, selected the Include All Subfolders tick-box, also selected the Same as Source tick-box (which warns you original files will be overwritten) and then completed the image adjustments I required.   However, after running the process all the adjusted images were saved in the main folder and did not overwrite the originals contained in each sub-folder.  Does anyone know if there is a setting I am missing to replace the images in the sub-folders or is this by design ?

    bossti a écrit:
    hi, so is it possible to keep the same subfolder structure as output location? regards! bostjan
    No...
    I think you are going to run great risks in trying to use batch process like 'process multiple files' or 'export' while relying on subfolder structures.
    - the organizer is much more powerful with its database and keywords management than a folder structure organization,
    - Batch processes are limited in Elements
    - 'Good practice' calls for keeping originals intact.
    What are you wanting to do exactly ? We might be able to suggest alternative workflows.

  • I can´t use folders and sub folders in the screensaver now, whay´s that?

    My problem is that since I install OS X Moutain Lion I only can choose one folder and doesn´t give me the option to mark olso sub folders. would you please tell me why you take that option that was so great to use?
    thank you

    Because Apple doesn't want you to have choices. They also remove many previously installed ones, apparently because they would work well with their retina displays. I restored those. File a bug report with Apple for lost functionality.

Maybe you are looking for

  • ITunes has encountered a problem and needs to close

    Just downloaded latest version of itunes with quicktime. Won't run. Get the Itunes has encountered a problem and needs to close error to Microsoft message. Have latest Windows XP updates as well as latest Ipod updater. Have Norton Antivirus. Looked a

  • Current Date Field question

    Hello I'm a novice user of LiveCycle and I'm trying to see if there's a solution for this issue we've come across. We've used LiveCycle to redesign human resource/payroll forms in our organization. One of the items we use is the current date field, w

  • Reports for Taxes

    Dear Experts, When i run me2N  i get a report for the purchase orders created and the amounts. But these amounts dont include the taxes like VAT. For instance, If the PO is of Rs 100 and there are multiple taxes of say 20% (in total), then the i need

  • Acrobat XI printing very slow

    Hi, Just upgraded to Acrobat XI v11.0.0.379 from v9 on a Windows 7 x64 system. I find the printing very slow compared to v9. I have a single page text PDF that I print regularly. Under v9, it takes 7-10 seconds to start the print. Under XI, it takes

  • Getting the current row in a datatable

    Hi, I am using datatable. How do I get the current row in the datatable and use it for my processing in the JSP page or I want to just output that value with out using any jsf tags. Examples <h:dataTable styleClass="dataTable" id="table1" border="0"