home *** CD-ROM | disk | FTP | other *** search
/ ftp.qualcomm.com / 2014.06.ftp.qualcomm.com.tar / ftp.qualcomm.com / eudora / eudorapro / windows / english / updater422 / readme422.txt < prev    next >
Text File  |  1999-11-01  |  37KB  |  779 lines

  1. =======================================
  2. EUDORA PRO FOR WINDOWS, VERSION 4.2.2
  3. =======================================
  4.  
  5. Eudora Pro 4.2 introduces new features, including a new search
  6. interface and field auto-completion, plus bug fixes.
  7.  
  8. Version 4.2.2 contains some additional bug fixes that are not
  9. in version 4.2.
  10.  
  11. This README provides information on the following topics:
  12.  
  13. - Minimum Requirements
  14. - Installation
  15. - New Features
  16. - Notes Concerning Eudora Pro and:
  17.     * Apple QuickTime and
  18.     * Microsoft Internet Explorer
  19. - Security Note
  20. - Bug Reports
  21. - Requests for Features
  22. - License and Legal Information
  23.  
  24. See Relnotes.txt for more detailed information on changes, bug fixes,
  25. and known issues. The reason for having both Readme.txt (this file)
  26. and Relnotes.txt is that a single text file containing all the
  27. information would be too large for Notepad to open on some systems.
  28.  
  29.  
  30. ----------------------
  31. MINIMUM REQUIREMENTS
  32. ----------------------
  33.  
  34. To use Eudora Pro for Windows Version 4.2, you must have the 
  35. following:
  36.  
  37. -  IBM PC or compatible.
  38. -  Microsoft Windows 95/98 or Windows NT 4.0 or above.
  39. -  WinSock 1.1 API compliant networking package. (Windows 95, 98,
  40.    and NT 4.0 come with this.)
  41. -  An Internet e-mail account (POP or IMAP) with an Internet
  42.    Service Provider or through a corporate network.
  43. -  Access to your mail account via (1) a modem connection to your
  44.    Internet Service Provider or (2) a direct Internet network
  45.    connection.  
  46.  
  47.  
  48. ---------------
  49. INSTALLATION
  50. ---------------
  51.  
  52. To install Eudora Pro:
  53.  
  54. 1.   Exit any applications you are running.
  55.  
  56. 2.   Run the Setup program.
  57.  
  58. 3.   Read the Welcome screen, then click the Next button.
  59.  
  60. 4.   Read the Software License Agreement, and if you agree to 
  61.      the terms, click Yes. Once you've installed Eudora, a copy
  62.      of the license agreement will be available in the file
  63.      License.txt in your Eudora directory.
  64.  
  65. 5.   Pick the components you wish to install.
  66.  
  67. 6.   Specify a directory to install Eudora, then click Next.
  68.  
  69. 7.   Verify the settings, then click Next.
  70.  
  71. 8.   Eudora is installed in the destination directory.
  72.  
  73. 9.   It will ask if you want to place a shortcut to Eudora on your
  74.      desktop.
  75.  
  76. 10.  We recommend that you look at the Readme.txt and Relnotes.txt
  77.      files in the Eudora directory following installation.
  78.  
  79.  
  80. --------------------------------
  81. NEW FEATURES IN EUDORA PRO 4.2
  82. --------------------------------
  83.  
  84. *    New, improved Search
  85.      Under Edit/Find/Find Messages, you will find our new search,
  86.      which has many improvements over the old Find.  The hot key is
  87.      Ctrl-F.  The search lets you to define one to five search
  88.      criteria; then you can have it either find the messages that
  89.      match all of the criteria (in computer-ese, it "ANDs" the
  90.      criteria together), or find the messages that match any of the
  91.      criteria (it "ORs" the criteria together).  There are new fields
  92.      which you can specify, as well as new operators.  You can also
  93.      specify which mailboxes are to be searched.  The result is a
  94.      clickable and sortable list of all of the matching messages.
  95.  
  96.      - You can right-click on the resulting found items and perform 
  97.        the specified actions such as delete.
  98.  
  99.      - The fields should be self-explanatory, but Summary refers to 
  100.        the From: and Subject: fields, Age refers to the age (in days) 
  101.        of the message, and Personality refers to the personality 
  102.        associated with the message.  Recall that Any recipient 
  103.        represents the To:, Cc:, and Bcc: fields.
  104.  
  105.      - The operators (or conjunctions) have a couple of new items.
  106.        "contains word" accepts exactly one word.  If you want more 
  107.        than word to be found, then you will have to specific another 
  108.        criteria.
  109.  
  110.      - "matches regexp" refers to a powerful tool called Regular
  111.        Expressions.  There are various implementations of Regular 
  112.        Expressions, but Eudora uses the POSIX implementation.  
  113.        Without going into too much detail, here are some symbols 
  114.        which are supported.  Note that this operator is 
  115.        case-sensitive.
  116.  
  117.        .  (period) represents any one character.
  118.        [] (brackets) contain a set of characters from which a match 
  119.           can be made.  It corresponds to one character in the search 
  120.           string.
  121.        \  (backslash) is an escape character which means that the 
  122.           next character will not have a special meaning.
  123.  
  124.        *  (asterisk) is a multiplier.  It will match zero or more of 
  125.           the previous character.  (Note that it's not a wildcard
  126.           character as in file names.)
  127.        ?  (question mark) is a multiplier.  It will match zero or one 
  128.           of the previous character.  (Note that it's not a wildcard
  129.           character as in file names.)
  130.        +  (plus) is a multiplier.  It will match one or more of the 
  131.           previous character.
  132.        {} (squiggly brackets) contain a number which specifies an 
  133.           exact number of the previous character.
  134.  
  135.        [^] (brackets containing caret and other characters) means any 
  136.            characters except the character(s) after the caret symbol 
  137.            in the brackets.
  138.  
  139.        ^  (caret) is the start of the line.
  140.        $  (dollar) is the end of the line.
  141.        \< represents the start of a word.
  142.        \> represents the end of a word.
  143.  
  144.        [:alpha:] represents any alphabetic letter.
  145.        [:digit:] represents any single-digit number.
  146.        [:blank:] represents a space or tab.
  147.  
  148.        |  (pipe) is OR.  It requires that the joined expressions have
  149.           parentheses around them.
  150.  
  151.        Examples:
  152.        e.a  matches eta, eda, e1a, but not Eta
  153.        [eE].a matches eta and Eta
  154.        E.*a matches Eudora, Etcetera, Ea
  155.        ho+p matches hop, hoop, hoooop, but not hp
  156.        etc\. matches etc. but not etc
  157.  
  158.      You can find further information on regular expressions on the
  159.      web, for example at
  160.      <http://www.robelle.com/library/smugbook/regexpr.html>.
  161.  
  162.      Note: The old-style Find functionality is still available via
  163.      Edit/Find/Find Text, with Ctrl-Shift-F as the keyboard shortcut.
  164.      If the focus is in a mailbox summary (table of contents), Find
  165.      Text will search through the summary information for that
  166.      mailbox only. Otherwise, if an open message has the focus, Find
  167.      Text will search that message. By contrast, the new Find Messages
  168.      finds text in messages throughout selected mailboxes.
  169.  
  170. *    Filters also support Regular Expressions
  171.  
  172. *    "Speak" Filter Action
  173.      You now have the option, when setting up a filter, to have Eudora
  174.      audibly announce, or speak, the subject and/or the name of the
  175.      sender whenever a message is filtered. (In the case of an
  176.      outgoing filter, it will speak the name of the recipient rather
  177.      than the sender.)
  178.  
  179.      Here's how to use this feature. When defining or editing a
  180.      filter, just select Speak from any of the drop-down lists under
  181.      Action. You'll see check boxes for what part or parts of the
  182.      message you want to be spoken, and a drop-down list of the
  183.      available voices.
  184.  
  185.      In order to use this feature, you need to have a sound card and
  186.      a sound card device driver that's supported in Windows. You also
  187.      need to install Microsoft's Speech Application Programming
  188.      Interface (SAPI) and a SAPI-compliant text-to-speech engine. If
  189.      you purchased Eudora Pro on a CD-ROM, installers for SAPI and
  190.      Microsoft's text-to-speech engine are in the Extras folder on the
  191.      CD-ROM; you need to run "Speech API Setup.exe", and then "Text To
  192.      Speech Setup.exe", from the Extras folder. (If your Windows
  193.      system doesn't support long file names on CD-ROMs, you'll
  194.      instead need to run SpchAPI.exe, then MSTTSL.exe, from the
  195.      Extras\Short folder on your CD-ROM.)
  196.  
  197.      If you don't have a Eudora Pro Email CD-ROM, you can obtain
  198.      the installers you need in order to use the Speak option at
  199.      <http://eudora.qualcomm.com/download/epro42>.
  200.  
  201. *    Field Auto-completion
  202.      You will find a new Option category under Tools-Options called
  203.      Auto-completion.  This feature allows you to type as little as
  204.      one character, and the program will try to help you finish the
  205.      field.  This feature is implemented in the To:, Cc:, and Bcc:
  206.      fields of the composition window, as well as the Directory
  207.      Services Query field.  If you have more than one match, then it
  208.      will provide a drop-down list.  You can use your mouse or arrow
  209.      keys to select an item from the list.
  210.  
  211.      - Note that if you have nicknames, then you might already have
  212.        some names in the list.  There is a different icon to 
  213.        distinguish between items in your address book and those that 
  214.        you had typed.
  215.  
  216. *    Directory Services History List
  217.      As mentioned above, this history list can also be brought up by 
  218.      starting to type a query.  You can also click on the down arrow
  219.      (triangle) to get a list.
  220.  
  221. *    Automatic spell-check
  222.      There is a new option under Tools-Options-Spell Checking called
  223.      Check spelling automatically as you type.  With this enabled, it
  224.      will automatically spell check your words after you type a space
  225.      after it.  If a word is misspelled, Eudora will put a red double
  226.      underline under the word.  If you want to correct it, you can 
  227.      right-click on the word and select from the options there.
  228.  
  229. *    Reply with selected text
  230.      If you select text from the preview pane or an opened received
  231.      message and then click on Reply/Reply All, then it will quote 
  232.      only the text that you had selected in your reply.
  233.  
  234. *    Personality selection
  235.      If you have more than one personality set up, then you can change
  236.      the personality being used by clicking on the From button which 
  237.      gives you a list to choose from.
  238.  
  239. *    Using IMAP offline
  240.      IMAP mailboxes are still accessible even though you are not 
  241.      currently connected to the server.  You are limited to what you 
  242.      have already downloaded.
  243.  
  244. *    Format=flowed
  245.      >>>If you've ever been perplexed by email messages that
  246.      look like this,
  247.      >>>with long lines alternating with shorter, stubbier ones
  248.      like this one,
  249.      >>>then you'll appreciate this feature.
  250.  
  251.      Whenever Eudora Pro 4.2 sends a plain text message (Text/Plain,
  252.      in the language of email standards), it sends an additional
  253.      parameter, format=flowed, that will allow the message to appear
  254.      properly formatted when it's read on the receiving end,
  255.      regardless of how wide or narrow a window it's displayed in. In
  256.      order for this to happen, the email client program on the
  257.      receiving end needs to be one that understands the format=flowed
  258.      parameter. Eudora Pro 4.2 is one, of course, but there will most
  259.      likely be others.
  260.  
  261.      If the receiving program doesn't understand format=flowed, it
  262.      will ignore that parameter and simply display the message the
  263.      same way it always would have.
  264.  
  265.      When you reply to a plain text message received from Eudora Pro
  266.      4.2, you will initially be given an excerpt bar to the left
  267.      of the text.  You can still adjust the width of the window and 
  268.      see the original text adjust accordingly.  This feature is used 
  269.      only when viewing messages and composing replies/forwards.  Note 
  270.      that a plain-text original message with a plain-text reply will 
  271.      be sent out as plain-text (the excerpt bar gets converted).
  272.  
  273.      Here is some more detailed information on format=flowed:
  274.      Eudora Pro 4.2 implements what we hope and believe will be a new
  275.      Internet standard for sending text, format=flowed.  This new
  276.      standard lets you send text with returns only at the ends of
  277.      paragraphs, which is much more convenient for reading on small
  278.      or unconventional displays, as well as being easier to handle
  279.      when quoting, trimming, etc.  However, unlike styled text (e.g.,
  280.      enriched or HTML), format=flowed is not unpleasant for users
  281.      with simple mailers.
  282.  
  283.      The way format=flowed works is by sending your mail wrapped and
  284.      with normal quote characters (>'s), just like before.  The only
  285.      difference is that whenever Eudora wraps your text, it adds a
  286.      single space to the end of the line.  This allows Eudora (or
  287.      other smart mailers) to reconstruct the original text exactly,
  288.      taking out all the line breaks that were added, and presenting
  289.      legible mail to the reader, no matter how wide or narrow the
  290.      window is.  A simple mailer won't know how to do this, of course,
  291.      but that's OK; the only difference will be a single space added
  292.      on the end of each wrapped line, which will disturb no one.
  293.  
  294.      Along with format=flowed comes increased use of excerpt bars in
  295.      Eudora.  The reason we use excerpt bars with format=flowed text
  296.      is that the text rewraps itself "on the fly" to your window
  297.      width, and inserting and removing '>' characters would be very
  298.      slow and clumsy in such a dynamic environment.  When your mail
  299.      is sent, your mail is wrapped and the excerpt bars are converted
  300.      back into '>' characters for transmission, so that even if your
  301.      recipient has a simple mailer, your mail will look fine.
  302.  
  303.      If you want to see a full description of the format=flowed
  304.      proposed standard, it's available at
  305.      <ftp://ftp.isi.edu/internet-drafts/draft-gellens-format-06.txt>
  306.      (the 06 could change to 07 or higher if there are further
  307.      revisions). It is expected to advance to the Internet RFC
  308.      (Request For Comments) stage shortly, but the RFC number isn't
  309.      available as of this writing.
  310.  
  311. *    Esoteric Settings plugin
  312.      As a default, this plugin is not available, but you can enable 
  313.      it by copying Esoteric.epi from your Extrastuff subdirectory 
  314.      into your main Eudora directory. This will add some additional
  315.      categories to the Tools/Options dialog, allowing you to
  316.      configure some additional aspects of Eudora's operation.
  317.  
  318.  
  319. -------------------------------------
  320. NOTES CONCERNING EUDORA PRO AND:
  321.       * APPLE QUICKTIME
  322.       * MICROSOFT INTERNET EXPLORER
  323. -------------------------------------
  324.  
  325. Eudora's standard message viewer supports basic HTML, such as text
  326. formatting and inline images. Installing QuickTime adds support to the
  327. standard viewer for inline display of a wider range of image (picture)
  328. formats. Installing Microsoft Internet Explorer (IE), version 4.0 or
  329. above, adds an additional message viewer (hereinafter, the Microsoft
  330. viewer) to Eudora that can accurately display just about any HTML
  331. message you might receive.
  332.  
  333. You can find installers for QuickTime 3.0.2 and IE 4.01 Service Pack 1
  334. (an updated version of IE 4.01) in the Extras folders of the Eudora
  335. Pro CD-ROM; they're called "Quick Time 3 Setup.exe" and "Internet
  336. Explorer 4 Setup.exe", respectively.
  337.  
  338. If your Windows system doesn't support long file names on CD-ROM
  339. drives, you'll instead need to launch QTime3.exe and/or IE4.exe from
  340. the Extras\Short folder on the CD-ROM. If you don't have the CD-ROM,
  341. you can find the installers on the Eudora web site at
  342. <http://eudora.qualcomm.com/download/epro42>.
  343.  
  344. * Why should I care about displaying HTML messages?
  345.  
  346. HTML messages (email messages that use HTML, the language of web
  347. pages) are becoming more and more common. The latest web browsers
  348. allow a web page to be sent as an HTML message. If someone sends you
  349. an HTML message that uses advanced formatting such as tables, then to
  350. see it as it was intended you need to tell Eudora to use the Microsoft
  351. viewer instead of its standard message viewer.
  352.  
  353. * If Eudora has two viewers, how will I tell it which one to use?
  354.  
  355. Just check or uncheck the "Use Microsoft's viewer" checkbox in the
  356. Viewing Mail panel of the Options dialog, under the Tools menu in
  357. Eudora. The checkbox is checked by default if IE 4.0 or higher is on
  358. your system. If IE 3.0 or higher is not on your system, the checkbox
  359. is dimmed and you can use only the standard viewer; you can, however,
  360. enhance it with QuickTime as described below.
  361.  
  362. * What's the impact of installing QuickTime?
  363.  
  364. It'll take about a minute and use 6 megabytes of disk space. It
  365. enhances the standard (non-Microsoft) viewer by allowing it to
  366. display images in a wider range of formats. It has no effect when
  367. "Use Microsoft's viewer" is selected.
  368.  
  369. * What's the impact of installing IE 4.0 or higher?
  370.  
  371. If you install IE 4.0 via the Eudora installer, it'll take up to 10
  372. minutes, depending on the speed of your computer, and consume about 35
  373. megabytes of disk space. It will not convert your desktop to the
  374. "active" state where single-clicking on an icon opens it, and it will
  375. not make IE 4.0 your default web browser unless your current default
  376. browser is an earlier version of IE. 
  377.  
  378. The specific viewing capabilities that you gain in Eudora are listed
  379. below.
  380.  
  381. * What if I already have Internet Explorer?
  382.  
  383. If you already have IE 4.0 or above on your system, Eudora will take
  384. advantage of it automatically, so there's no need to have the Eudora
  385. installer reinstall it.
  386.  
  387. If you already have IE 3.0 on your system, you have two choices:
  388.  
  389. 1. You can leave it alone, in which case Eudora will use IE 3.0 if you
  390.    choose "Use Microsoft's viewer" in Eudora's Options dialog.
  391.    However, this doesn't provide all the functionality you get with
  392.    the IE 4.0 viewer (or even the standard viewer) - see the details
  393.    below.
  394. 2. You can upgrade to IE 4.0 via the Eudora installer. This will
  395.    upgrade your IE 3.0 to version 4.0 (on Windows 95, this won't take
  396.    effect until after you reboot). You won't lose any functionality,
  397.    and all your IE settings and preferences will be preserved.
  398.  
  399. If you have a▌version of IE earlier than 3.0 on your system,
  400. installing IE 4.0 will not affect it. However, you must have IE 3.0 or
  401. above in order for the "Use Microsoft's viewer" option to take effect.
  402.  
  403. * What does Eudora's standard viewer support?
  404.  
  405.   + Bold, italic, and underlined text
  406.   + Different font faces, sizes, and colors
  407.   + Fixed-width text
  408.   + Left and right justification and centering
  409.   + Multiple indentation levels
  410.   + Bulleted lists
  411.   + Hyperlinks (clicking on a URL launches your browser and takes you
  412.     to a web page) 
  413.   + Horizontal ruling lines
  414.   + Inline display of BMP images and some JPEG images
  415.  
  416. * What does QuickTime add to the standard viewer?
  417.  
  418.   + Inline display of a wider variety of images, including the full
  419.     set of JPEG formats, PNG, GIF, TIFF, Macintosh PICT, etc.
  420.  
  421. * What does the Microsoft viewer do that the standard one doesn't?
  422.  
  423.   + Displays GIF, PNG and a wider variety of JPEG images inline
  424.   + Automatic inline display of images from web sites
  425.   + Numbered lists
  426.   + Tables and forms
  427.   + International character sets
  428.   + Java applets, JavaScript, and ActiveX controls
  429.   + Dynamic HTML (not if you're using IE 3.0)
  430.   + Other embedded objects (audio, video)
  431.   + Unlike QuickTime, it doesn't display Macintosh PICT images
  432.  
  433. * What DON'T I get in Eudora if I use IE 3.0 instead of IE 4.0?
  434.  
  435.   + Dynamic HTML
  436.   + Editing of received messages
  437.   + Running Eudora plug-ins (such as text translators) on received
  438.     messages
  439.  
  440. If you're using IE 3.0, you can still edit received messages, and run 
  441. Eudora plug-ins on them, provided you first switch to the standard
  442. viewer by unchecking "Use Microsoft's viewer" in the Options dialog.
  443.  
  444. * What does inline image support mean?
  445.  
  446. This means that if there's a picture embedded in the middle of a
  447. message, it'll display that way. Otherwise, the picture will be an
  448. attachment and will display in a separate window when you click on it.
  449.  
  450.  
  451. ---------------
  452. SECURITY NOTE
  453. ---------------
  454.  
  455. Recent email viruses, such as the notorious "Melissa", have heightened
  456. many people's awareness of the need to be careful with email. For
  457. maximum protection, we recommend the following:
  458. 1. Change your Eudora attachment directory to something other than the
  459.    default.
  460. 2. Disable JavaScript in your web browser.
  461. 3. Leave "(Warn me when I) Launch a program from a message" checked
  462.    in Tools/Options/Extra Warnings.
  463. 4. Leave "Allow executables in HTML content" unchecked in
  464.    Tools/Options/Viewing Mail.
  465.  
  466. Consult <http://eudora.qualcomm.com/security.html> for additional
  467. information, including instructions for changing your Eudora
  468. attachment directory.
  469.  
  470.  
  471. -------------
  472. BUG REPORTS
  473. -------------
  474.  
  475. If you experience something you think might be a bug in Eudora, 
  476. please report it by sending a message to win-eudora-bugs@qualcomm.com.
  477. Describe what you did, what happened, what version of Eudora you 
  478. have, any error messages Eudora gave (the numbers in parentheses ( ) 
  479. are especially important), what kind of computer you have, which 
  480. operating system you're using, and anything else you think might be 
  481. relevant. An easy way of incorporating your system information is
  482. to select Help/Insert System Configuration while composing your
  483. message in Eudora.
  484.  
  485. You will receive an automated response indicating that your bug 
  486. report has been received and forwarded to our engineering staff. 
  487. Unless additional information is needed, you will not receive a 
  488. direct response. If you're experiencing a problem with Eudora,
  489. select Help/Technical Support in Eudora for information on getting
  490. more help.
  491.  
  492.  
  493. -----------------------
  494. REQUESTS FOR FEATURES
  495. -----------------------
  496.  
  497. Please send any suggestions or requests for new features to 
  498. eudora-suggest@qualcomm.com.
  499.  
  500. You will receive an automated response indicating that your 
  501. suggestion has been received and forwarded to our engineering staff. 
  502. Unless additional information is needed, you will not receive a 
  503. direct response. If you're experiencing a problem with Eudora,
  504. select Help/Technical Support in Eudora for information on getting
  505. more help.
  506.  
  507.  
  508. ------------------------------------
  509. EUDORA PRO EMAIL LICENSE AGREEMENT
  510. ------------------------------------
  511.  
  512. QUALCOMM Incorporated
  513.  
  514. License Terms for Eudora Pro Version 4.2.2 - Windows Platform
  515.  
  516. IMPORTANT: PLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY
  517. BEFORE USING THE SOFTWARE. BY USING THE SOFTWARE, YOU ARE AGREEING TO
  518. BE BOUND BY THE TERMS AND CONDITIONS STATED BELOW. IF YOU DO NOT AGREE
  519. WITH THE TERMS OF THIS LICENSE, PROMPTLY RETURN THE UNUSED SOFTWARE TO
  520. THE POINT OF PURCHASE OR, IN THE CASE OF AN ELECTRONIC SOFTWARE
  521. TRANSACTION, DO NOT INSTALL THE SOFTWARE AND NOTIFY YOUR SUPPLIER TO
  522. RECEIVE A REFUND.
  523.  
  524. 1. License. QUALCOMM Incorporated ("QUALCOMM") grants to the Licensee
  525. purchasing this copy of Eudora Pro Software a nonexclusive,
  526. nontransferable license to use the Eudora software and other software
  527. and fonts contained in this package (collectively the "Software") and
  528. its documentation for use in accordance with this License.
  529. Notwithstanding anything to the contrary herein, any license agreement
  530. included in any third party software component(s) shall set forth
  531. Licensee's rights with regard to such software component(s) and shall
  532. take precedence over the terms and conditions of this software license
  533. agreement to the extent they are inconsistent. QUALCOMM or QUALCOMM's
  534. Licensors retain title to the Software and related documentation
  535. although the Licensee owns the media on which the Software and
  536. documentation are recorded, if any. This License allows use of the
  537. Software and documentation only by the number of Users and on the
  538. platform specified on the UPC label on the box or kit or, for
  539. electronic transactions, the number of Users licensed. "User(s)"
  540. means Licensee, if Licensee is an individual purchasing the Software
  541. for use at office or home (in which case Licensee's immediate family
  542. members residing in the same household shall not be considered
  543. additional Users), or, if Licensee is a corporation or similar
  544. business or commercial entity or government agency, its current
  545. employees. For qualifying educational institutions, "Users" also means
  546. faculty and staff teaching for or employed by Licensee and registered
  547. students enrolled at a single campus operated by Licensee. Subject to
  548. the limitations of this License, each authorized User may only use the
  549. Software on (i) any central processing unit ("CPU"), workstation or
  550. portable which is owned or controlled by Licensee, and (ii) any
  551. User-owned CPU, workstation or portable.
  552.  
  553. 2. Restrictions. This License sets forth the terms and conditions
  554. governing the use of the Software and documentation. Licensee may not
  555. rent, lease or otherwise transfer the Software or its documentation.
  556. Licensee may make a limited number of copies of the Software based on
  557. the number of licensed Users and a reasonable number of back-up
  558. copies. The Software contains copyrighted material, trade secrets and
  559. other proprietary material. Licensee must reproduce on all such copies
  560. of the Software the copyright notices and any other proprietary
  561. legends that were on the original copy of the Software. Licensee shall
  562. not, without the prior written permission of QUALCOMM, nor permit
  563. anyone else to, decompile, reverse engineer, disassemble or otherwise
  564. reduce the Software to a human perceivable form, or to modify,
  565. network, rent, lease, loan, distribute, or create derivative works
  566. based upon the Software or the documentation in whole or in part.
  567. Notwithstanding, if the Software is lawfully acquired outside of the
  568. United States within a jurisdiction which is a member of European
  569. Economic Community (EEC) subject to the EEC Council Directive of May
  570. 14, 1991, Licensee agrees that within that jurisdiction it shall not,
  571. and shall not allow any party on Licensee's behalf, to attempt to
  572. reverse engineer or decompile the Software into another computer
  573. language, except as expressly and specifically provided in the EEC
  574. Council Directive of May 14, 1991. Any and all information obtained
  575. during such lawful reverse engineering and/or decompiling activities,
  576. including but not limited to, the organization, logic, algorithms and
  577. processes of the Software, shall be deemed to be the confidential and
  578. proprietary information of QUALCOMM or its Licensors. Licensee shall
  579. not make copies of the copyrighted Software documentation without the
  580. prior written permission of QUALCOMM provided that for electronic
  581. transactions, Licensee may make one (1) hard copy of such
  582. documentation for each User.
  583.  
  584. 3. Technical Support. Licensee must register in order to be eligible
  585. for technical support via telephone or electronic mail. For a period
  586. of ninety (90) days, commencing with the date of Licensee's first
  587. telephone call requesting support, Licensee will have access to
  588. technical support for the Software for the technical contact
  589. designated on the product registration card included with this package
  590. or specified via electronic mail registration, subject to Licensee's
  591. compliance with QUALCOMM's instructions for accessing such support and
  592. standard verification procedures. Upon the expiration of the above-
  593. described ninety (90) day period, Licensee may extend technical
  594. support on a per-incident or annual fee basis in accordance with
  595. QUALCOMM's then-current pricing and terms. Upgrades to the Software
  596. and its documentation, if any, are not included and may be sold
  597. separately.
  598.  
  599. 4. Termination. This License is effective until terminated. Licensee
  600. may terminate this License at any time by destroying all copies of the
  601. Software and its documentation. This License will terminate
  602. immediately without notice from QUALCOMM if Licensee fails to comply
  603. with any provision of this License. Upon termination, Licensee must
  604. destroy all copies of the Software and its documentation.
  605.  
  606. 5. Export Law Assurances. Licensee agrees and certifies that neither
  607. the Software nor any other technical data received from QUALCOMM, nor
  608. the direct product thereof, will be exported outside the United States
  609. except as authorized and as permitted by the laws and regulations of
  610. the United States. If the Software has been rightfully obtained by
  611. Licensee outside of the United States, Licensee agrees that Licensee
  612. will not re-export the Software nor any other technical data received
  613. from QUALCOMM, nor the direct product thereof, except as permitted by
  614. the laws and regulations of the United States and the laws and
  615. regulations of the jurisdiction in which Licensee obtained the
  616. Software. The Software may not be exported to any of the following
  617. countries: Cuba, Iran, Iraq, Libya, North Korea, or Syria.
  618.  
  619. 6. Government End Users. If Licensee is acquiring the Software on
  620. behalf of any unit or agency of the United States Government, the
  621. following provisions apply. The Government agrees: (i) if the Software
  622. is supplied to the Department of Defense ("DOD"), the Software is
  623. classified as "Commercial Computer Software" and the Government is
  624. acquiring only "restricted rights" in the Software and its
  625. documentation as that term is defined in Clause 252.227-7013(c)(1) of
  626. the DFARS; and (ii) if the Software is supplied to any unit or agency
  627. of the United States Government other than DOD, the Government's
  628. rights in the Software and its documentation will be as defined in
  629. Clause 52.227-19(c)(2) of the FAR or, in the case of NASA, in Clause
  630. 18-52.227-86(d) of the NASA Supplement to the FAR.
  631.  
  632. 7. Limited Warranty on Media. QUALCOMM warrants, with respect to any
  633. Software which is purchased on diskette or CD-ROM, that the diskettes
  634. or CD-ROM on which the Software is recorded will be free from defects
  635. in materials and workmanship under normal use for a period of ninety
  636. (90) days from the date of purchase. QUALCOMM's entire liability and
  637. Licensee's exclusive remedy will be replacement of diskettes or CD-ROM
  638. not meeting QUALCOMM's limited warranty and which are returned to the
  639. place of purchase within such warranty period. QUALCOMM will have no
  640. responsibility to replace a diskette or CD-ROM damaged by accident,
  641. abuse or misapplication.
  642. ANY IMPLIED WARRANTIES ON THE DISKETTES OR CD-ROM
  643. INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY
  644. AND FITNESS FOR A PARTICULAR PURPOSE ARE LIMITED IN
  645. DURATION TO NINETY (90) DAYS FROM THE DATE OF PURCHASE.
  646.  
  647. 8. Disclaimer of Warranty. Licensee expressly acknowledges and agrees
  648. that the use of the Software and its documentation is at Licensee's
  649. sole risk. The Software, documentation, and technical support are
  650. provided "AS IS" and without warranty of any kind. Information
  651. regarding third party services, if any, is provided as a convenience
  652. only, without warranty by QUALCOMM, and will be governed solely by the
  653. terms agreed upon between Licensee and the third party providing
  654. such services. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAWS,
  655. QUALCOMM AND QUALCOMM'S LICENSOR(S) (FOR THE PURPOSES OF PROVISIONS 8
  656. AND 9, QUALCOMM AND QUALCOMM'S LICENSOR(S) SHALL BE COLLECTIVELY
  657. REFERRED TO AS QUALCOMM) EXPRESSLY DISCLAIM ALL WARRANTIES, EXPRESS OR
  658. IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  659. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
  660. NONINFRINGEMENT. QUALCOMM DOES NOT WARRANT THAT THE FUNCTIONS
  661. CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS, OR THAT
  662. THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR
  663. THAT DEFECTS IN THE SOFTWARE WILL BE CORRECTED. FURTHERMORE, QUALCOMM
  664. DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE
  665. RESULTS OF THE USE OF THE SOFTWARE OR ITS DOCUMENTATION IN TERMS OF
  666. THEIR CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. NO ORAL OR
  667. WRITTEN INFORMATION OR ADVICE GIVEN BY QUALCOMM OR ITS AUTHORIZED
  668. REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE THE
  669. SCOPE OF THIS WARRANTY. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
  670. OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY.
  671.  
  672. 9. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED UNDER
  673. APPLICABLE LAWS, UNDER NO CIRCUMSTANCES, INCLUDING NEGLIGENCE, SHALL
  674. QUALCOMM, ITS AFFILIATES OR THEIR DIRECTORS, OFFICERS, EMPLOYEES OR
  675. AGENTS BE LIABLE FOR ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES
  676. (INCLUDING DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS
  677. INTERRUPTION, LOSS OF BUSINESS INFORMATION AND THE LIKE) ARISING OUT
  678. OF THE USE OR INABILITY TO USE THE SOFTWARE OR ITS DOCUMENTATION, EVEN
  679. IF QUALCOMM OR ITS AUTHORIZED REPRESENTATIVE HAS BEEN ADVISED OF THE
  680. POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE
  681. LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL
  682. DAMAGES SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY. In no
  683. event shall QUALCOMM's total liability to Licensee for all damages,
  684. losses, and causes of action (whether in contract, tort, including
  685. negligence, or otherwise) exceed the amount paid by Licensee for the
  686. Software and its documentation.
  687.  
  688. 10. No Waiver or Assignment. No delay or failure to take action under
  689. this License will constitute a waiver unless expressly waived in
  690. writing, signed by a duly authorized representative of QUALCOMM, and
  691. no single waiver will constitute a continuing or subsequent waiver.
  692. This License may not be assigned, sublicensed or otherwise transferred
  693. by Licensee, by operation of law or otherwise, without QUALCOMM's
  694. prior written consent, provided that Licensee may assign this License
  695. upon written notice to QUALCOMM in instances in which such assignment
  696. is to an entity which acquires all or substantially all of the
  697. business of Licensee, whether by merger, consolidation, or
  698. acquisition of assets.
  699.  
  700. 11. Controlling Law and Severability. This License shall be governed
  701. by and construed in accordance with the laws of the United States and
  702. the State of California, as applied to agreements entered into and to
  703. be performed entirely within California between California residents.
  704. If for any reason a court of competent jurisdiction finds any
  705. provision of this License, or portion thereof, to be unenforceable,
  706. that provision of the License shall be enforced to the maximum
  707. extent permissible so as to effect the intent of the parties, and the
  708. remainder of this License shall continue in full force and effect. 
  709.  
  710. 12. Entire Agreement. This License constitutes the entire agreement
  711. between the parties with respect to the use of the Software and its
  712. documentation, and supersedes all prior or contemporaneous
  713. understandings or agreements, written or oral, regarding such subject
  714. matter. There shall be no contract for purchase or sale of the
  715. Software except upon the terms and conditions specified herein. Any
  716. additional or different terms or conditions proposed by Licensee or
  717. contained in any purchase order are hereby rejected and shall be of no
  718. force and effect unless expressly agreed to in writing by QUALCOMM. No
  719. amendment to or modification of this License will be binding unless in
  720. writing and signed by a duly authorized representative of QUALCOMM.
  721.  
  722. Eudora(R), Eudora Pro(R) and Eudora Light(R) are registered trademarks
  723. of QUALCOMM Incorporated.
  724.  
  725.  
  726. License Terms for PureVoice(TM) Player-Recorder Version 1.3.2 -
  727. Windows Platform
  728. License Terms for PureVoice(TM) Plug-In for Eudora Version 4.2.2 -
  729. Windows Platform
  730.  
  731. QUALCOMM grants to the user a nonexclusive license to use this
  732. PureVoice software solely for user's own personal or internal business
  733. purposes.  The user may not commercially distribute, sublicense,
  734. resell, or otherwise transfer for any consideration, or reproduce for
  735. any such purposes, the PureVoice software or any modification or
  736. derivation thereof, either alone or in conjunction with any other
  737. product or program.  Further, the user may not modify the PureVoice 
  738. software.
  739.  
  740. THE PUREVOICE SOFTWARE IS PROVIDED TO THE USER ''AS IS.''
  741. QUALCOMM MAKES NO WARRANTIES, EITHER EXPRESS OR IMPLIED,
  742. WITH RESPECT TO THE PUREVOICE SOFTWARE AND/OR ASSOCIATED
  743. MATERIALS PROVIDED TO THE USER, INCLUDING BUT NOT LIMITED
  744. TO ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  745. PARTICULAR PURPOSE OR AGAINST INFRINGEMENT. QUALCOMM DOES 
  746. NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE SOFTWARE
  747. WILL MEET YOUR REQUIREMENTS, OR THAT THE OPERATION OF THE
  748. SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT 
  749. DEFECTS IN THE SOFTWARE WILL BE CORRECTED.  FURTHERMORE, 
  750. QUALCOMM DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS
  751. REGARDING THE USE OR THE RESULTS OF THE USE OF THE 
  752. SOFTWARE OR ANY DOCUMENTATION PROVIDED THEREWITH IN TERMS
  753. OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE.
  754. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY QUALCOMM 
  755. OR A QUALCOMM AUTHORIZED REPRESENTATIVE SHALL CREATE A
  756. WARRANTY OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY.
  757.  
  758. LIMITATION OF LIABILITY - QUALCOMM IS NOT LIABLE FOR ANY
  759. CLAIMS OR DAMAGES WHATSOEVER, INCLUDING PROPERTY DAMAGE,
  760. PERSONAL INJURY, INTELLECTUAL PROPERTY INFRINGEMENT, LOSS
  761. OF PROFITS, OR INTERRUPTION OF BUSINESS, OR FOR ANY SPECIAL,
  762. CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER
  763. ARISING OUT OF BREACH OF WARRANTY, CONTRACT, TORT 
  764. (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE.
  765.  
  766. Copyright ⌐ 1998, 1999 by QUALCOMM Incorporated.  All rights reserved.
  767.  
  768. PureVoice(TM) is a trademark of QUALCOMM Incorporated.
  769.  
  770. QUALCOMM and Eudora are registered trademarks and QUALCOMM is a
  771. registered service mark of QUALCOMM Incorporated.
  772.   
  773. Windows is a trademark of Microsoft Corporation registered in the U.S.
  774. and other countries.
  775.   
  776. All other trademarks and service marks are the property of their
  777. respective owners.
  778.  
  779. 10/99