home *** CD-ROM | disk | FTP | other *** search
/ ftp.qualcomm.com / 2014.06.ftp.qualcomm.com.tar / ftp.qualcomm.com / eudora / eudorapro / windows / english / updater42 / readme42.txt < prev    next >
Text File  |  1999-10-26  |  37KB  |  776 lines

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