What is the PROXYAUTH IMAP extension?

What is the PROXYAUTH
IMAP extension?
<P>
PROXYAUTH is an
undocumented IMAP extension supported by Messaging Server 3.x for use by
migration tools. It allows a "superuser" (administrator) client to log in on
behalf of a user.
<P>
In Messaging server 2.0, it was possible to use telnet
to access the IMAP4 port and then
enter the following command:<BR>
<P>
LOGIN Postmaster: user PostmasterPassword
<P>
However, in Messaging Server 3.x, the same method does not work. Instead, a
3.0 server supports the X-NETSCAPE capability. To use this capability, you
must define a user ID on the server that is capable of proxy authentication.
<P>
For <B>Unix</B> servers, add the chosen account name to the
/etc/netscape.mail.conf
file. For example,<BR>
<P>
ProxyAuthUser=headhoncho
<P>
For <B>Windows NT</B> systems, use the following steps to set up
ProxyAuthUser:<BR>
<P>
<OL>
<LI>Start regedt32.exe.
<P>
<LI>Select HKEY_LOCAL_MACHINE\Software\Netscape
<P>
<LI>Select Messaging Server\3.0\Dispatch\Config
<P>
<LI>Create a new value called ProxyAuthUser
of type REG_MULTI_SZ
<P>
<LI>Double-click the newly created value.
<P>
<LI>Enter the username you chose for the ProxyAuthUser
<P>
<LI>Close regedt32.exe.
</OL>
<P>
To use the PROXYAUTH
feature, do the following actions:<BR>
<P>
<OL>
<LI>In IMAP, authenticate using the ProxyAuthUser
account. For example,<BR>
<P>
LOGIN headhoncho <I>password</I>
<P>
<LI>Use the PROXYAUTH
extension.<BR>
<P>
PROXYAUTH <I>normaluser</I>
</OL>
<P>
If this command succeeds, the session will run as the account <I>normaluser</I>.
<P>
In addition, PROXYAUTH
has an optional parameter that specifies the path location of the user's
maildrop. This is useful if the user is not in the directory yet.
<B>Caution:</B><BR>
<P>
PROXYAUTH does not
require that the user ID or maildrop entered already exists, so be careful
when entering these values. To avoid possible complications, add to the
directory first and do not rely on the non-existence feature.

In MPEG Streamclip, use the export settings that match your FCP Sequence settings. Typically that would be QuickTime DV/DVCPro (NOT .DV Stream).
Here's a 2 part tutorial on MPEG Streamclip by Nick Holmes:
http://discussions.apple.com/thread.jspa?threadID=2059475&tstart=0
http://discussions.apple.com/thread.jspa?threadID=2070861&tstart=0
-DH

Similar Messages

  • What is the best file extension for import?

    When converting a DVD to another file extension for FCP, what is the best file extension to use? When I was using Adobe products, I would convert the DVD with Stream Clip to an AVI or MPEG and bring it right in. I found these do not work well in FCP. I know I can play it in and make a capture, I was just trying to find what file extension I should use to bring it right into the browser. I receive some DVD's that are quite long and would rather convert them to another extension instead of playing it in to capture.

    In MPEG Streamclip, use the export settings that match your FCP Sequence settings. Typically that would be QuickTime DV/DVCPro (NOT .DV Stream).
    Here's a 2 part tutorial on MPEG Streamclip by Nick Holmes:
    http://discussions.apple.com/thread.jspa?threadID=2059475&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=2070861&tstart=0
    -DH

  • What are the exported video extensions in Lr3?

    I've got a bit of a mini-crisis: I re-coded a plugin which relies on Lr4 features, but needs to run in Lr3.
    As coded, I'm needing to know the extension that will be used upon export, before export actually commences, for the video files.
    (I'm presently using videoExportPreset:extension(), but that's Lr4-only)
    Thanks in advance for any help,
    Rob

    That sounds right. Video support in LR 3 was very limited so no format
    conversion capability was provided.
    Matt
    Thanks,
    Matt

  • What is the replacement for design view in in flex builder 4.7 for cs extension builder?

    Because design view is not available in flash builder than what is the use of extension builder in UI designing now we have to do design UI with xml which is very time consuming and boring  if there is any replacemnt for it than please help me .1 more thing i want to know is that when i make new default project in extension builder(flash builder 4.6) than it also not able to load design mode errror is
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins\com.adobe.cside.libsinstaller_2.0.0.4-33034\archive\cslibs\2.0\4.5\re lease\apedelta.swc- not respondingSWC file failed to load. Any component dependent on this SWC file will not be displayed in the Design Mode.The SWC may have failed to load because of:
    *  Incompatible definitions caused by usage of a different SDK version
    *  Missing referred class definitions

    I have researched this quite considerably and my understanding is that Adobe have no intention of supporting Design View any more for Extension Builder.  In my opinion a very disappointing decision and one that is hard to comprehend.
    The best workaround I can find is to create the majority of your design in a parallel, non Extension Builder, project and then convert/import your design into your Extension.  This is by no means as satisfactory as having Design View for the Extension you are writing but it is better than simply creating your layout by guess work/trial and error.
    Although this has not been announced by Adobe, I have a suspicion that the reason they have decided not to put any further resources into fixing Design View is that Extension Builder as we know it is going to be abandoned soon, probably replaced with an HTML5/JavaScript method of building extensions.  My concern with this is that, other than wanting reassurances that there will be backward compatibility support for old extensions, There will not be a way of compiling an extension in a way that prevents people from seeing your code.
    This is all speculation and I guess we will have to wait and see what happens.  Hope this has helped.

  • What is the use of have 3 Class loaders and why not only one

    In java we have 3 class loaders i.e BootStrap loader, Extension loader and System loader. Why can't we have just one?
    And what is the user of Extension loader?

    user7041221 wrote:
    In java we have 3 class loaders i.e BootStrap loader, Extension loader and System loader. Why can't we have just one?
    And what is the user of Extension loader?This has to do with one of the most advantages of OOP, reusability.
    First comes the Bootstrap class loader, it loads the classes contained in java.lang
    Next comes the Extention classloader, which loads vendor specific classes, like in case of SUN jvm the extention classloader will load the jars contained
    in /jre/lib/ext, that is why if you place any jar file in this directory, it will automatically be loaded at runtime. Suppose you place log4j.jar in this directory in this directory, now if you check the classpath[if you use eclipse, it is very easy to find out],log4j jar willl be there, you will now not have to explicitly add the jar in the classpath again. If any other vendor supplies JVM ,he/she will place their vendor specific classes in this directory.
    Last but not the least, the system classloader, it loads the classes in your application, example can be, when you use jdbc and do this :
    Class.forName("")
    system classloader is loading the class for you, there are two types: static and dynamic class loading.
    Now all these classloader follow the same rule, first it asks its parent classloader to load a class for it, system classloader will ask the extention classloader
    to load a class when needed, and if the extention classloader has already loaded the class, that class will not be loaded again. If the class could not be loaded by ext class loader, the the system classloader tries to load it. Relation between ext and bootstrap class loader is same. If the class not found ClassNotFoundException is thrown..
    For more details..check the specification.

  • OFFICEJET 8500 FAX LOG DATA FILES NOT FOUND; ARE THEY ON COMPUTER AND WHAT IS THE FAX DATA FILE EXT

    4:32 PM PST  FRIDAY MAY 13, 2011
    TODAY I WAS TALKING WITH PAUL IN INDIA AT HP SUPPORT ABOUT THE FACT I HAD JUST SENT A FAX TO A DOCTOR. TWENTY MINUTES LATER THE DATA FILE ASSOCIATED WITH THIS FAX WAS NOT AVAILABLE.  QUESTION IS, WHAT IS THE FAX FILE EXTENSION NAME *.???.....AND IS THE FILE ON THE COMPUTER WHERE I AM SENDING MY FAXES FROM.  ALSO I RECEIVED A HP UPDATE TO THE OFFICEJET 8500 THURSDAY MAY 12 AT PM PST.  I NOTICED AFTER THIS UPDATE I NO LONGER HAVE MY DATA FILES WITH MY FAXES SENT.  WHAT HAPPENED??

    '''places.sqlite''' is the name of the file that Firefox stores bookmarks and browsing history in.
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • I keep getting a message "The MobileMe IMAP server ... rejected the password for ...."  I can use that password when I go to iCloud, but my e-mails won't download to my computer.  What's the mix-up?

    I keep getting a message "The MobileMe IMAP server ... rejected the password for ...."  I can use that password when I go to iCloud (and to this discussion), but my e-mails won't download to my computer.  What's the mix-up?

    If the setting is greyed out perhaps you have restrictions enabled that would prevent someone from changing accounts. Settings>General>Restrictions>Allow Changes>Accounts.

  • I have been getting this (or earlier version) messages every time Firefox updates for at least a year "The Java Console extension is no longer supported and will be automatically removed the next time you restart Firefox. " What should I do?

    For a long time, each time Firefox updates, it invites me to install theJava Console Update. then I get a message that Java Console not supported.

    You can uninstall (remove) the Java Console extensions and disable the Java Quick Starter extension, you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    Disable the Java Quick Starter extension (if you have it): Tools -> Add-ons -> Extensions<br />
    Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)
    See http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0

  • My Extensis suitcase 11.0.4 is no longer working with my system OSX10.6.8, what is the best and cheapest font management software to use that's compatible with this system and CS software

    my Extensis suitcaseX 11.0.4 is no longer working with my system OSX10.6.8, what is the best and cheapest font management software to use that's compatible with this system and my existing CS design software?

    If you upgraded to Snow Leopard, then it would seem that Suitcase 11 is not compatible with Snow Leopard and you'd need to buy Suitcase Fusion 3 for $99.95.

  • What are the uses of MVC, Extension and how to create it for begineers pls

    what are the uses of MVC, Extension and how to create it for begineers pls
    dont give link for tutorials please explain ,
    thank you,
    Regards,
    Jagrut BahratKumar Shukla

    Hi,
    Check out this link :
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/0f/ab3a3c9ca75402e10000000a114084/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/0f/ab3a3c9ca75402e10000000a114084/content.htm</a>
    It is the best possible explanation and documentation that you'll get.
    Thanks,
    Tatvagna.

  • My bank id works with IE but not in Firefox, even if I run without extensions. What is the problem?

    My bank id works with IE but not in Firefox, even if I run without extensions. What is the problem?

    Make sure you are using the correct user name / password.
    https://support.mozilla.org/en-US/kb/firefox-cant-load-websites-other-browsers-can
    https://support.mozilla.org/en-US/kb/secure-connection-failed-error-message

  • What is the extension for mac mail in lion

    What is the extension for mail in lion?

    What do you mean exactly, that you're looking for com.apple.mail.plist?
    If so, it should be in the Preferences folder like it always is. But Lion hides the Library folder, which holds the Preferences folder, so you'll probably have to use one of the techniques to reveal the Library folder.
    http://www.macworld.com/article/161156/2011/07/view_library_folder_in_lion.html

  • What Is Usually the Name or Extension Name of an Object Code File in Xcode 4.2?

    Hi. I'm relearning how to program and I'd like to know each term I encounter as much as possible. What's usually the name or extension name of an object source code file in the Navigator (the pane on the left) in XCode 4.2? Thank you in advance & advanced merry Christmas.
    Gbu.

    Xcode 4 User Guide ; Xcode Basics Help ; Xcode Release Notes
    Happy Holidays

  • What are the gmail server entries (SMTP, IMAP)?

    I cannot access my gmail account. the following  IMAP server "imap.gmail.com" is not responding. Check network connection and that you entered the correct information in the "Incoming Mail Server" field.
    Question: what is this "correct information for the Incoming Mail Server"?
    Thanks for your help!

    Sorry for being thick but my pop setup in the past didn't seem this complex.
    That's because POP isn't that complex, but IMAP is, which is precisely why I don't ever intend to use it, and maybe you shouldn't, either.
    Gmail doesn't offer a true IMAP protocol; it's their own unique hybrid. With IMAP, the account is really on the Gmail server and a mirror image is on your Mac in the Mail program. There are very few people who really need an IMAP account, and it does create problems because there's a lot of "chatter" between Mail and the Gmail server to keep everything in sync, and that can slow down your Mac a great deal, depending on the types of messages you send and get, and whatever other applications are running at the same time.
    If you use POP email, you can keep all your mail on your Mac, and you can choose to leave your received email on the Gmail server if you like, so that if you ever need to see them again for some reason, you can.
    There are people who will disagree with my position, as you'd expect, but in the end it's really your decision as to what works best for you.

  • I'm back in CS3. What's the extension (acronym) newer version users have to save Illustrator files for me to open?

    Saving new versions of Illustrator files so I can open them in CS3...what's the extension?

    There is no specific other format. They are just AI files. They just have to take care to pick the right version, though inevitably you are going to lose data one way or the other.
    Mylenium

Maybe you are looking for