summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Murat D. Kadirov2010-09-17 06:52:31 +0200
committer Robby Workman2010-09-17 06:52:31 +0200
commit8ca8d4be4d4152fda5c34eef2bcb2c7559432fa0 (patch)
tree99efdb21f4aaebedecbebb94ed691826de326b95 /network
parentf34c439e22b153dc9cdd47f200a571166835398d (diff)
downloadslackbuilds-8ca8d4be4d4152fda5c34eef2bcb2c7559432fa0.tar.gz
network/dropbox: Added (store, sync and share files online)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/dropbox/README8
-rw-r--r--network/dropbox/doinst.sh4
-rw-r--r--network/dropbox/dropbox.SlackBuild77
-rw-r--r--network/dropbox/dropbox.desktop9
-rw-r--r--network/dropbox/dropbox.info10
-rw-r--r--network/dropbox/dropbox.pngbin0 -> 9896 bytes
-rw-r--r--network/dropbox/slack-desc19
-rw-r--r--network/dropbox/terms.html841
8 files changed, 968 insertions, 0 deletions
diff --git a/network/dropbox/README b/network/dropbox/README
new file mode 100644
index 0000000000..6b7f46740f
--- /dev/null
+++ b/network/dropbox/README
@@ -0,0 +1,8 @@
+Dropbox (store, sync, and share files online)
+
+Dropbox is an extension that integrates the Dropbox web service with
+your desktop. It consists of two major components: dropboxd - a per
+user closed-source daemon process that makes sure your $HOME/Dropbox
+directory is properly synchronized with the web Dropbox server/service,
+and dropbox-client, which connects to your dropboxd and presents a GUI
+based on the information dropboxd provides.
diff --git a/network/dropbox/doinst.sh b/network/dropbox/doinst.sh
new file mode 100644
index 0000000000..4e8ba7071d
--- /dev/null
+++ b/network/dropbox/doinst.sh
@@ -0,0 +1,4 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
+
diff --git a/network/dropbox/dropbox.SlackBuild b/network/dropbox/dropbox.SlackBuild
new file mode 100644
index 0000000000..fa5a7779e8
--- /dev/null
+++ b/network/dropbox/dropbox.SlackBuild
@@ -0,0 +1,77 @@
+#!/bin/sh
+
+# Slackware build script for Dropbox
+
+# Copyright 2010 Murat D. Kadirov <banderols@gmail.com>
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+PRGNAM=dropbox
+VERSION=${VERSION:-0.7.110}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=x86 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf .$PRGNAM-dist
+tar xvf $CWD/$PRGNAM-lnx.$ARCH-$VERSION.tar.gz
+cd .$PRGNAM-dist
+chown -R root:root .
+find . \
+ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
+ -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
+ -exec chmod 644 {} \;
+
+mkdir -p $PKG/opt $PKG/usr/bin
+cp -a ../.$PRGNAM-dist $PKG/opt/dropbox
+rm -f $PKG/opt/dropbox/libstdc++.so.6
+( cd $PKG/usr/bin ; ln -s ../../opt/dropbox/dropboxd . )
+
+install -D -m 644 $CWD/dropbox.desktop $PKG/usr/share/applications/dropbox.desktop
+install -D -m 644 $CWD/dropbox.png $PKG/usr/share/pixmaps/dropbox.png
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/terms.html > $PKG/usr/doc/$PRGNAM-$VERSION/terms.html
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+( cd $PKG/usr/doc/$PRGNAM-$VERSION ; ln -s ../../../opt/dropbox/ACKNOWLEDGEMENTS . )
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/network/dropbox/dropbox.desktop b/network/dropbox/dropbox.desktop
new file mode 100644
index 0000000000..ecefb1b323
--- /dev/null
+++ b/network/dropbox/dropbox.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Dropbox
+GenericName=Network Storage
+Comment=Secure backup, sync, and sharing made easy
+Exec=/opt/dropbox/dropboxd
+Icon=dropbox
+Terminal=false
+Type=Application
+Categories=Network;
diff --git a/network/dropbox/dropbox.info b/network/dropbox/dropbox.info
new file mode 100644
index 0000000000..d565f85df6
--- /dev/null
+++ b/network/dropbox/dropbox.info
@@ -0,0 +1,10 @@
+PRGNAM="dropbox"
+VERSION="0.7.110"
+HOMEPAGE="www.dropbox.com"
+DOWNLOAD="http://dl-web.getdropbox.com/u/17/dropbox-lnx.x86-0.7.110.tar.gz"
+MD5SUM="e6cb1751ba33542a82b794cea7dc8dbd"
+DOWNLOAD_x86_64="http://dl-web.getdropbox.com/u/17/dropbox-lnx.x86_64-0.7.110.tar.gz"
+MD5SUM_x86_64="434fb3451d1f638bddde2f5691beb426"
+MAINTAINER="Murat D. Kadirov"
+EMAIL="banderols@gmail.com"
+APPROVED="rworkman"
diff --git a/network/dropbox/dropbox.png b/network/dropbox/dropbox.png
new file mode 100644
index 0000000000..0c64fbb4f1
--- /dev/null
+++ b/network/dropbox/dropbox.png
Binary files differ
diff --git a/network/dropbox/slack-desc b/network/dropbox/slack-desc
new file mode 100644
index 0000000000..f9eacf8322
--- /dev/null
+++ b/network/dropbox/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+dropbox: dropbox (store, sync and share files online)
+dropbox:
+dropbox: Dropbox is an extension that integrates the Dropbox web service
+dropbox: with your desktop. It consists of two major components: dropboxd
+dropbox: - a per-user closed-source daemon process that makes sure your
+dropbox: $HOME/Dropbox directory is properly synchronized with the web
+dropbox: Dropbox server/service, and dropbox-client, which connects to
+dropbox: your dropboxd and presents a GUI based on the information
+dropbox: dropboxd provides.
+dropbox:
+dropbox:
diff --git a/network/dropbox/terms.html b/network/dropbox/terms.html
new file mode 100644
index 0000000000..f5eb6e8c2d
--- /dev/null
+++ b/network/dropbox/terms.html
@@ -0,0 +1,841 @@
+
+
+
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
+ <meta http-equiv="X-UA-Compatible" content="IE=7" />
+ <meta name="description" content="Dropbox is the easiest way to store, sync, and, share files online. Available for Windows, OS X, and Linux."/>
+ <meta name="keywords" content="online storage, free storage, file sharing, share files, cloud storage, online backup, cross platform, sync, sharing, mac, windows, os x, linux, backup, collaboration"/>
+ <meta name="verify-v1" content="pgicAJQuAUzz8qDCe3B80U067GKfqOpJ1V+4NeZCKUw=" />
+ <title>Dropbox - Terms - Secure backup, sync and sharing made easy.</title>
+ <link rel="shortcut icon" href="/static/1238483362/images/favicon.ico"/>
+ <link href="/static/1238483362/css/main.css" rel="stylesheet" type="text/css"/>
+ <link href="/static/1238483362/css/lib.css" rel="stylesheet" type="text/css" media="screen"/>
+ <link href="/static/1238483362/css/sprites.css" rel="stylesheet" type="text/css" media="screen"/>
+ <link rel="apple-touch-icon" href="/static/1238483362/images/dropbox_webclip.png"/>
+ <link rel="P3Pv1" href="/w3c/p3p.xml"/>
+
+<script type="text/javascript">
+var Constants = {
+ BLOCK_CLUSTER: 'dl-web.getdropbox.com',
+ PUBSERVER: 'dl.getdropbox.com',
+ WEBSERVER: 'www.getdropbox.com',
+ block: 'dl-web.getdropbox.com',
+ protocol: 'https',
+ uid: '',
+ SVN_REV: '1238483362',
+ TOKEN: '',
+ IS_PROD: true,
+ upload_debug: false,
+ tcn: 'touch'
+};
+</script>
+ <script type="text/javascript" src="/static/1238483362/javascript/lib.js"></script>
+ <script type="text/javascript" src="/static/1238483362/javascript/dropbox.js"></script>
+</head>
+
+<body>
+
+ <div id="modal-behind" style="display: none;"></div>
+ <div id="modal" style="display: none;">
+ <div id="modal-box">
+ <a onclick="javascript: Modal.hide(); Event.stop(event); return false;" href="#" style="float: right;"><img src="/static/images/icons/icon_spacer.gif" alt="" border="0" class="sprite s_x" /></a>
+ <h2 id="modal-title"></h2>
+ <div id="modal-content">
+ </div>
+ </div>
+ </div>
+ <div id="modal-overlay" style="display: none;" onclick="Modal.hide(); Event.stop(event); return false;"></div>
+ <div id="floaters"></div><div id="trash-can" style="display:none"></div><div id="grave-yard" style="display:none"></div>
+
+
+ <div id="feedback-div" style="display: none">
+ <div id="feedback">
+ <form method="post" action="/feedback">
+ Suggestions, feature ideas, bug reports, and comments are always welcome.<br/><br/>
+ If you'd like to interact with other Dropbox users, check out our <a href="http://forums.getdropbox.com">forums</a>.
+ <div align="right">
+ <textarea class="textinput act_as_block" name="content" id="feedback_textarea" rows="1" cols="1"></textarea><br/>
+ <input type="submit" value="Send feedback" class="button" />
+ </div>
+ </form>
+ </div>
+ </div>
+
+
+ <div id="server-error" class="notify" style="display: none;">
+ <table cellpadding="0" cellspacing="0">
+ <tr>
+ <td style="background-color: #faf3c4; padding: 2px 2px 1px 8px;">
+ <span>There was a problem completing this request.</span>
+ </td>
+ <td style="background-color: #faf3c4; padding: 2px 3px;">
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <b class="rbottom"><b class="r0"></b><b class="r1"></b></b>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div id="server-success" class="notify" style="display: none;">
+ <table cellpadding="0" cellspacing="0">
+ <tr>
+ <td style="background-color: #faf3c4; padding: 2px 2px 1px 8px;">
+ <span>Request completed successfully.</span>
+ </td>
+ <td style="background-color: #faf3c4; padding: 2px 3px;">
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <b class="rbottom"><b class="r0"></b><b class="r1"></b></b>
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div id="base-page-frame">
+
+ <div id="main-container">
+
+ <div id="header">
+ <div id="login" class="loginbox" style="display: none;">
+
+ <form action="https://www.getdropbox.com/login" method="post">
+<input type="hidden" name="t" value="791206fc33" />
+ E-mail:
+ <input id="login_email" type="text" name="email" class="textinput smallinput" value="" tabindex="1"/>
+ &nbsp;&nbsp; Password:
+ <input type="password" name="password" class="textinput smallinput" value="" tabindex="2"/>
+ &nbsp;
+ <input type="submit" value="Log in" class="button welcome-submit" style="vertical-align: middle;" tabindex="4"/>
+
+ <div class="littlelink" style="margin-top: 2px; vertical-align: middle">
+ <input type="checkbox" class="no-border" name="remember_me" id="remember_me" style="vertical-align: middle;" tabindex="3"/>
+ <label for="remember_me" style="vertical-align: middle; cursor: pointer;">Remember me</label>
+ </div>
+ </form>
+ </div>
+ <a href="/" id="logo">
+ <img border="0" id="logo_img" alt="Dropbox - Secure backup, sync and sharing made easy." src="/static/1238483362/images/main_logo.png"/>
+ </a>
+ <ul id="topnav">
+
+ <li><a id="loginlink" href="/login" onclick="Element.hide('topnav');Effect.Appear('login', {afterFinish: function() {$('login_email').focus();}});return false;">Log in</a></li>
+
+
+ </ul>
+ <br class="clear"/>
+ </div>
+
+ <div id="tabs-container" class="clearfix">
+ <ul id="tabs" class="clearfix">
+ </ul>
+ </div>
+<div id="notice-container" class="clearfix" >
+</div>
+
+
+ <div id="full-content">
+ <h3><a href="/">Dropbox</a> &#187; Policies</h3>
+ <p class="page-note"><img src="/static/images/icons/icon_spacer.gif" alt="" class="sprite s_graynotch" /> Legal Fun. Last revised September 17, 2008.</p>
+ <ul id="subtabs">
+ <li id="terms-tab" class="subtab selected "><a href="terms" onclick="Tabs.showTab(this,'terms');"><img src="/static/images/icons/icon_spacer.gif" alt="" class="sprite s_page_white_magnify" /> Terms of Service</a></li>
+ <li id="privacy-tab" class="subtab "><a href="privacy" onclick="Tabs.showTab(this, 'privacy');"><img src="/static/images/icons/icon_spacer.gif" alt="" class="sprite s_lock" /> Privacy Policy</a></li>
+ <li id="dmca-tab" class="subtab "><a href="dmca" onclick="Tabs.showTab(this, 'dmca');"><img src="/static/images/icons/icon_spacer.gif" alt="" class="sprite s_sound" /> DMCA Policy</a></li>
+ <li id="pricingterms-tab" class="subtab "><a href="pricingterms" onclick="Tabs.showTab(this, 'pricingterms');"><img src="/static/images/icons/icon_spacer.gif" alt="" class="sprite s_star" /> Pricing Terms</a></li>
+ </ul>
+<div>
+<div id="terms-content" class="content-tab" style="">
+ <h2>Dropbox Terms of Service</h2>
+
+ <p><span>These Terms of Service govern your access to and use of Dropbox's
+ website (the &#147;<b><i>Site</i></b>&#148;), any information, text, graphics, or other
+ materials created and/or provided by Dropbox and appearing on the Site (the &#147;<b><i>Content</i></b>&#148;),
+ Files (as defined below) and any services and/or software provided through the
+ Site or by Dropbox (the &#147;<b><i>Services</i></b>&#148;). </span><span>These Terms of Service
+ limit Dropbox's liability and obligations to you, grant Dropbox certain rights
+ and allow Dropbox to change, suspend or terminate your access to and use of the
+ Site, Content, Files and Services. </span><span>Your access to and use of the Site, Content, Files and/or Services
+ are expressly conditioned on your compliance with these Terms of Service. By
+ accessing or using the Site, Content, Files and/or Services you agree to be
+ bound by these Terms of Service. </span></p>
+
+
+
+ <p><span>YOU UNDERSTAND THAT BY CLICKING THE &#147;<b><i>I AGREE</i></b>&#148;
+ BUTTON, BY USING THE SITE, CONTENT, FILES AND/OR SERVICES OR YOUR ACCOUNT YOU
+ ARE AGREEING TO BE BOUND BY THESE TERMS OF SERVICE. IF YOU DO NOT ACCEPT THESE
+ TERMS OF SERVICE IN THEIR ENTIRETY, YOU MAY NOT ACCESS OR USE THE SITE,
+ CONTENT, FILES OR SERVICES. <span style='text-transform:uppercase'>If you
+ agree to these Terms of Service on behalf of a business, you represent and
+ warrant that you have the authority to bind that business to these Terms of
+ Service and your agreement to these terms will be treated as the agreement of
+ the business. In that event, &#147;you &#148; and &#147;your&#148; will refer and apply to that
+ business.</span></span></p>
+
+
+ <h2>Types of Accounts</h2>
+
+ <p><span>Currently, Dropbox offers both a restricted free account (&#147;<b><i>Free
+ Account</i></b>&#148;) with a limited amount of storage and a paid premium account
+ (&#147;<b><i>Premium Account</i></b>&#148;). More information on the types of accounts
+ that Dropbox offers and the costs involved can be found <a href="/pricingterms">here</a>.
+ Please read this document in its entirety regarding account restrictions.
+ Dropbox reserves the right, at any time, to change or impose fees for access to
+ and use of the Site, Content, Files and/or Services.</span></p>
+
+
+
+ <h2>Consent to Access Your Files</h2>
+
+ <p><span>BY UTILIZING THE SITE, CONTENT, FILES AND/OR SERVICES, YOU CONSENT
+ TO ALLOW DROPBOX TO ACCESS YOUR COMPUTER TO ACCESS ANY FILES THAT ARE PLACED IN
+ THE 'MY DROPBOX,' 'DROPBOX' FOLDERS, AND/OR ANY OTHER FOLDER WHICH YOU CHOOSE
+ TO LINK TO DROPBOX. BY PLACING FILES IN YOUR SHARED FOLDER, YOU CONSENT TO
+ SHARE ACCESS TO THE CONTENT OF THOSE FOLDERS WITH THOSE OTHER DROPBOX USERS
+ THAT HAVE BEEN AUTHORIZED TO UTILIZE THOSE FOLDERS. BY PLACING FILES IN YOUR
+ PUBLIC FOLDERS, YOU CONSENT TO SHARE ACCESS TO THE CONTENT OF THOSE FOLDERS
+ WITH OTHER DROPBOX USERS AND/OR THE PUBLIC. </span></p>
+
+
+
+ <h2>Files and Folders</h2>
+
+ <p><span>&#147;<b><i>Your
+ Files</i></b><i>&#148; </i>or <i>&#147;<b>User Files</b>&#148;</i> (collectively, the &#147;<b><i>Files</i></b>&#148;)
+ as used in this Agreement means the information contained in the files that you
+ or other users upload, download and access through the Site and Services. </span>
+
+ <span>You are the owner of Your Files and
+ are solely responsible for your conduct and the content of Your Files, as well
+ as any of the content contained in your communications with other Dropbox users,
+ including but not limited to User Posts (as defined below).</span> </p>
+
+ <p><span>Dropbox allows you to share some or all of Your Files. If you
+ choose to, you can share all or some of Your Files with the general public, or
+ with specific individuals you select. If you decide to share Your Files, you
+ are giving certain legal rights, as explained below, to those individuals who
+ you have given access to your folders. </span></p>
+
+
+
+ <p><span>Dropbox does not claim any ownership rights in Your Files. You acknowledge
+ that Dropbox does not have any obligation to monitor the Files or User Posts
+ that are uploaded, posted, submitted, linked to or otherwise transmitted using
+ the Site or Services, for any purpose and, as a result, is not responsible for
+ the accuracy, completeness, appropriateness, legality or applicability of the
+ Files or anything said, depicted or written by users in their User Posts,
+ including without limitation, any information obtained by using the Site or
+ Services. Dropbox does not endorse anything contained in the Files or User
+ Posts or any opinion, recommendation or advice expressed therein and you agree
+ to waive, and hereby do waive, any legal or equitable rights or remedies you
+ have or may have against Dropbox with respect thereto.</span></p>
+
+ <h2>Your Public Folder</h2>
+
+ <p><span>While you own the content contained in Your Files, files placed in
+ your public folders are automatically available to other Dropbox users and to
+ the general public. By placing Your Files in your public folder, you hereby
+ grant all other Dropbox users and the public a non-exclusive, non-commercial,
+ worldwide, royalty-free, sublicensable, perpetual and irrevocable right and
+ license to use and exploit Your Files in your public folder. In other words, a
+ file in your public folder can be used by anyone, for any purpose <i>except</i>
+
+ commercial use. If you do not want other people to be able to use Your Files in
+ this manner, then simply do not place Your Files in your public folder. By
+ placing Your Files in your public folder, </span><span>you </span><span style='font-family:"Tahoma","sans-serif"'>agree
+ and acknowledge that Dropbox has no responsibility or obligation to monitor or
+ notify of you of any non-compliance related to the license you have granted and
+ that Dropbox has no responsibility to enforce or police, or aid you in
+ enforcing or policing, the terms of that license.</span></p>
+
+
+
+ <h2>Your Shared Folder</h2>
+
+ <p><span>While you own the content contained in Your Files, files placed in
+ your shared folders are available to those users to whom you grant access. By placing Your Files in your shared folder, you
+ agree and acknowledge that Dropbox
+ has no responsibility or obligation to monitor or notify of you of any
+ non-compliance related to the rights or license you may choose to grant to
+ other users who have access to your shared folders, if any, and that Dropbox
+ has no responsibility to enforce or police, or aid you in enforcing or
+ policing, the terms of the license(s) or permission(s) you have chosen to
+ offer.</span></p>
+
+ <h2>Your Responsibilities </h2>
+
+
+ <p><span>You represent and warrant that you own or have the necessary
+ licenses, rights, consents and permissions to grant the licenses that both your
+ public and shared folders require, as described above. Please note that moving
+ all or portions of Your Files from your public folders does not revoke the
+ license granted to those individuals who previously accessed those files. </span></p>
+
+ <p><span style='font-family:"Tahoma","sans-serif"'>You
+ should be aware that Files may be protected by intellectual property rights
+ which are owned by the Dropbox user whose folder (public or shared) that File
+ resides in. You may not modify, rent, lease, loan, sell, distribute or create
+ derivative works based on the content(s) (either in whole or in part) of
+ another user's shared folder unless you have been specifically told that you
+ may do so by the rightful owner of that File, in a separate agreement.</span></p>
+
+
+
+ <p><span>You acknowledge and agree that you should not rely on the Site,
+ Content, Files and<b> </b>Services for any reason. You further acknowledge and
+ agree that you are solely responsible for maintaining and protecting all data
+ and information that is stored, retrieved or otherwise processed by the Site,
+ Content, Files or Services. Without limiting the foregoing, you will be
+ responsible for all costs and expenses that you or others may incur with
+ respect to backing up, and restoring and/or recreating any data and information
+ that is lost or corrupted as a result of your use of the Site, Content, Files
+ and/or Services. </span></p>
+
+
+
+ <h2>Privacy</h2>
+
+ <p><span>See Dropbox's Privacy Policy at <a
+ href="/privacy">http://www.getdropbox.com/privacy</a> for information and notices
+ concerning Dropbox's collection and use of your personal information. </span></p>
+
+
+
+ <h2>Account Security</h2>
+
+ <p><span>You are responsible for safeguarding the password that you use to
+ access the Site, Content, Files and Services. You agree not to disclose your
+ password to any third party. You agree to take sole responsibility for any
+ activities or actions under your password, whether or not you have authorized
+ such activities or actions. You will immediately notify Dropbox of any
+ unauthorized use of your password. You acknowledge that if you wish to protect
+ your transmission of data and/or files to Dropbox, it is your responsibility to
+ use a secure encrypted connection to communicate with and/or utilize the Site,
+ Files and Services.</span></p>
+
+
+
+ <h2>Your Use of the Services</h2>
+
+ <p><span>Dropbox grants you a limited, nonexclusive, nontransferable,
+ revocable license to use the Site, Content, Files and Services subject to the
+ restrictions set forth in these Terms of Service.</span></p>
+
+
+
+ <h2>Dropbox Property and Feedback</h2>
+
+ <p><span>All right, title, and interest in and to the Site, Content<b>, </b>and
+ Services are and will remain the exclusive property of Dropbox and its
+ licensors, including all Intellectual Property Rights (as defined below)
+ therein, even if Dropbox incorporates any of your Feedback (as defined below)
+ into subsequent versions. The Site, Content<b>,</b> and Services are protected
+ by copyright, trademark, and other laws of both the United States and foreign
+ countries. Except as expressly permitted in these Terms of Service, you may not
+ reproduce, modify or prepare derivative works based upon, distribute, sell,
+ transfer, publicly display, publicly perform, transmit, or otherwise use the
+ Site, Content, or Services. You may not copy or modify the HTML or other code
+ used to generate web pages on the Site. </span></p>
+
+
+
+ <p><span>All feedback, comments, and suggestions for improvements (the &#147;<b><i>Feedback</i></b>&#148;)
+ that you provide to Dropbox, in any form, and any contributions you make to the
+ Site by posting content and communicating with other Dropbox users via posts to
+ forums on the site (&#147;<b><i>User Posts</i></b>&#148;) will be the sole and exclusive
+ property of Dropbox. You hereby irrevocably transfer and assign to Dropbox and
+ agree to irrevocably assign and transfer to Dropbox all of your right, title,
+ and interest in and to all of your Feedback and User Posts, including all
+ worldwide patent rights (including patent applications and disclosures),
+ copyright rights, trade secret rights, and other intellectual property rights
+ (collectively, the &#147;<b><i>Intellectual Property Rights</i></b>&#148;) therein. At
+ Dropbox's request and expense, you will execute documents and take such further
+ acts as Dropbox may reasonably request to assist Dropbox in acquiring,
+ perfecting and maintaining its Intellectual Property Rights and other legal
+ protections for your Feedback and User Posts. You will not earn or acquire any
+ rights or licenses in the Site, Content<b>, </b>and Services or in any Dropbox
+ Intellectual Property Rights on account of these Terms of Service or your
+ performance under these Terms of Service. </span></p>
+
+
+
+ <h2>General Prohibitions</h2>
+
+ <p><span>You agree not to do any of the following while using the Site,
+ Content, Files or Services:</span></p>
+
+
+
+ <ul style='margin-top:0in' type='disc'>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Post, publish or transmit any text, graphics, or
+ material that: (i) is false or misleading; (ii) is defamatory; (iii)
+ invades another's privacy; (iv) is obscene, pornographic, or offensive;
+ (v)&nbsp;promotes bigotry, racism, hatred or harm against any individual
+ or group; (vi) infringes another's rights, including any intellectual
+ property rights; or (vii) violates, or encourages any conduct that would
+ violate, any applicable law or regulation or would give rise to civil
+ liability; </span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Access, tamper with, or use non-public areas of the
+ Site (including but not limited to user folders not designated as 'public'
+ or that you have not been given permission to access), Dropbox's computer
+ systems, or the technical delivery systems of Dropbox's providers; </span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Attempt to probe, scan, or test the vulnerability
+ of any system or network or breach any security or authentication
+ measures;</span></li>
+
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Attempt to access or search the Site, Content,
+ Files or Services with any engine, software, tool, agent, device or
+ mechanism other than the software and/or search agents provided by Dropbox
+ or other generally available third-party web browsers (such as Microsoft
+ Internet Explorer or Mozilla Firefox), including but not limited to
+ browser automation tools;</span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Send unsolicited email, junk mail, &#147;spam,&#148; or chain
+ letters, or promotions or advertisements for products or services;</span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Forge any TCP/IP packet header or any part of the
+ header information in any email or newsgroup posting, or in any way use
+ the Site, Content, Files or Services to send altered, deceptive or false
+ source-identifying information;</span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Attempt to decipher, decompile, disassemble or
+ reverse engineer any of the software used to provide the Site, Content,
+ Files or Services;</span></li>
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Interfere with, or attempt to interfere with, the
+ access of any user, host or network, including, without limitation,
+ sending a virus, overloading, flooding, spamming, or mail-bombing the
+ Site; or plant malware on Dropbox's computer system, those systems of
+ Dropbox's providers, or otherwise use the Site, Content, Files or Services
+ to attempt to distribute malware; or</span></li>
+
+ <li style='color:black;margin-top:2.5pt;punctuation-wrap:hanging;
+ text-autospace:ideograph-numeric ideograph-other'><span>Impersonate or misrepresent your affiliation with
+ any person or entity.</span></li>
+ </ul>
+
+ <p style='margin-top:2.5pt;margin-right:0in;margin-bottom:0in;
+ margin-left:.25in;margin-bottom:.0001pt;punctuation-wrap:hanging;text-autospace:
+ ideograph-numeric ideograph-other'><span>&nbsp;</span></p>
+
+ <p><span>Dropbox will have the right to investigate and prosecute
+ violations of any of the above, including intellectual property rights
+ infringement and Site security issues, to the fullest extent of the law.
+ Dropbox may involve and cooperate with law enforcement authorities in
+ prosecuting users who violate these Terms of Service. You acknowledge that
+ Dropbox has no obligation to monitor any user's access to or use of the Site,
+ Content, Files and Services, but has the right to do so for the purpose of
+ operating the Site and the Services, to ensure users' compliance with these
+ Terms of Service, or to comply with applicable law or the order or requirement
+ of a court, administrative agency or other governmental body.</span></p>
+
+
+
+ <h2>Digital Millennium Copyright Act Compliance</h2>
+
+ <p><span>You will only upload, post, submit or otherwise transmit data
+ and/or files: (i) that you have the lawful right to use, copy, distribute,
+ transmit, or display; or (ii) that does not infringe the intellectual property
+ rights or violate the privacy rights of any third party (including, without
+ limitation, copyright, trademark, patent, trade secret, or other intellectual
+ property right, or moral right or right of publicity). Dropbox has adopted and
+ implemented a policy that permits the deletion of files that violate this
+ policy, and that permits the termination in appropriate circumstances of the
+ accounts of users who repeatedly infringe or are believed to be or are charged
+ with repeatedly infringing the rights of copyright holders. Please see the <a href="/dmca">Dropbox
+ Copyright Policy</a> for further information at <a
+ href="/dmca">http://www.getdropbox.com/dmca</a>.</span></p>
+
+
+
+ <h2>Links</h2>
+
+ <p><span>The Site may contain links to third-party websites or resources.
+ You acknowledge and agree that Dropbox is not responsible or liable for: (i)
+ the availability or accuracy of such websites or resources; or (ii) the
+ content, products, or services on or available from such websites or resources.
+ Links to such websites or resources do not imply any endorsement by Dropbox of
+ such websites or resources or the content, products, or services available from
+ such websites or resources. You acknowledge sole responsibility for and assume
+ all risk arising from your use of any such websites or resources. </span></p>
+
+
+
+ <h2>Termination</h2>
+
+ <p><span>If you violate any of these Terms of Service, your permission to
+ use the Site, Content<b>, </b>Files and Services will automatically terminate.
+ Dropbox reserves the right to revoke your access to and use of the Site, Content,
+ Files and Services at any time, with or without cause, and with or without
+ notice. Dropbox also reserves the right to cease providing or to change the
+ Site, Content, Files or Services at any time and without notice. </span></p>
+
+
+
+ <p><span>Dropbox
+ reserves the right to terminate Free Accounts at any time, with or without
+ notice. Without limiting the generality of the foregoing, and without further
+ notice, Dropbox may choose to delete and/or reduce: (i) any or all of Your
+ Files if your Free Account is inactive for 90 days; and (ii) previous versions
+ and/or prior backups of Your Files.</span></p>
+
+ <p><span> </span></p>
+
+ <h2>Use of the Site at Your Own Risk</h2>
+
+ <p><span>Your access to and use of the Site, Content<b>,</b> Files and
+ Services and is at your own risk. Dropbox will have no responsibility for any
+ harm to your computer system, loss or corruption of data, or other harm that
+ results from your access to or use of the Site, Content, Files or Services. </span></p>
+
+
+
+ <h2>Dropbox is Available &#147;AS-IS&#148;</h2>
+
+ <p><span>THE SITE, CONTENT, FILES AND SERVICES ARE PROVIDED &#147;AS IS&#148;,
+ WITHOUT WARRANTY OR CONDITION OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT
+ LIMITING THE FOREGOING, DROPBOX EXPLICITLY DISCLAIMS ANY WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT AND ANY
+ WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. YOU ACKNOWLEDGE
+ THAT USE OF THE SITE, CONTENT, FILE AND SERVICES MAY RESULT IN UNEXPECTED
+ RESULTS, LOSS OR CORRUPTION OF DATA OR COMMUNICATIONS, PROJECT DELAYS, OTHER
+ UNPREDICTABLE DAMAGE OR LOSS, OR EXPOSURE OF YOUR DATA OR YOUR FILES TO
+ UNINTENDED THIRD PARTIES.</span></p>
+
+
+
+ <p><span>DROPBOX MAKES NO WARRANTY THAT THE SITE, CONTENT, FILES OR
+ SERVICES WILL MEET YOUR REQUIREMENTS OR BE AVAILABLE ON AN UNINTERRUPTED,
+ SECURE, OR ERROR-FREE BASIS. DROPBOX MAKES NO WARRANTY REGARDING THE QUALITY OF
+ ANY PRODUCTS, SERVICES, OR INFORMATION PURCHASED OR OBTAINED THROUGH THE SITE,
+ CONTENT<b>,</b> OR SERVICES, OR THE ACCURACY, TIMELINESS, TRUTHFULNESS,
+ COMPLETENESS OR RELIABILITY OF ANY INFORMATION OBTAINED THROUGH THE SITE,
+ CONTENT<b>,</b> FILES OR SERVICES.</span></p>
+
+
+
+ <p><span>NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM
+ DROPBOX OR THROUGH THE SITE, CONTENT<b>,</b> FILES OR SERVICES, WILL CREATE ANY
+ WARRANTY NOT EXPRESSLY MADE HEREIN.</span></p>
+
+
+
+ <h2>Indemnity</h2>
+
+ <p><span>You agree to defend, indemnify, and hold Dropbox, its officers,
+ directors, employees and agents, harmless from and against any claims,
+ liabilities, damages, losses and expenses, including, without limitation,
+ reasonable attorneys' fees and costs, arising out of or in any way connected
+ with: (i) your access to or use of the Site, Content, Files and Services; (ii)
+ your violation of this Agreement; (iii) your violation of any third party
+ right, including without limitation any intellectual property right, including
+ but not limited to right of attribution, publicity, confidentiality, property
+ or privacy right; or (iv) any claim that Your Files, or your use of Files,
+ caused damage to a third party, including without limitation claims that Your
+ Files, or use of Files, infringe the rights of another.</span></p>
+
+
+ <h2>Limitation of Liability</h2>
+
+ <p><span>IN NO EVENT WILL DROPBOX BE LIABLE TO YOU OR TO ANY THIRD PARTY
+ FOR DAMAGES OF ANY KIND, INCLUDING, WITHOUT LIMITATION, DIRECT, SPECIAL,
+ INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES (INCLUDING LOSS OF USE, DATA,
+ BUSINESS OR PROFITS) ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, OR
+ FROM YOUR ACCESS TO OR USE OF, OR INABILITY TO ACCESS OR USE, THE SITE, CONTENT,
+ FILES AND/OR SERVICES, OR FOR ANY ERROR OR DEFECT IN THE SITE, CONTENT<b>,</b>
+ FILES OR SERVICES, WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON
+ CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE,
+ OR ANY OTHER LEGAL THEORY, WHETHER OR NOT DROPBOX HAS BEEN INFORMED OF THE
+ POSSIBILITY OF SUCH DAMAGE, EVEN IF A REMEDY SET FORTH HEREIN IS FOUND TO HAVE
+ FAILED OF ITS ESSENTIAL PURPOSE. YOU SPECIFICALLY ACKNOWLEDGE THAT DROPBOX IS
+ NOT LIABLE FOR THE DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR
+ THIRD PARTIES AND THAT THE RISK OF INJURY FROM THE FOREGOING RESTS ENTIRELY
+ WITH YOU. FURTHER, DROPBOX WILL HAVE NO LIABILITY TO YOU OR TO ANY THIRD PARTY
+ FOR ANY THIRD PARTY CONTENT UPLOADED ONTO OR DOWNLOADED FROM THE SITE OR
+ THROUGH THE SERVICES AND/OR THE FILES, OR IF YOUR DATA IS LOST, CORRUPTED OR
+ EXPOSED TO UNINTENDED THIRD PARTIES.</span></p>
+
+
+
+ <p><u><span>FREE ACCOUNT HOLDERS</span></u><span>: YOU AGREE THAT THE AGGREGATE LIABILITY OF DROPBOX TO YOU FOR ANY
+ AND ALL CLAIMS ARISING FROM THE USE OF THE SITE, CONTENT, FILES AND/OR SERVICES
+ IS LIMITED TO TWENTY ($20) U.S. DOLLARS. THE LIMITATIONS OF DAMAGES SET FORTH
+ ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN DROPBOX AND
+ YOU. </span></p>
+
+
+ <p><u><span>PREMIUM ACCOUNT HOLDERS</span></u><span>: YOU AGREE THAT THE AGGREGATE LIABILITY OF DROPBOX TO YOU FOR ANY
+ AND ALL CLAIMS ARISING FROM THE USE OF THE SITE, CONTENT, FILES AND/OR SERVICES
+ IS LIMITED TO LOWER OF THE AMOUNTS YOU HAVE PAID TO DROPBOX DURING THE THREE
+ MONTH PERIOD PRIOR TO SUCH CLAIM, FOR ACCESS TO AND USE OF THE SITE, CONTENT<b>,</b>
+ FILES OR SERVICES, OR ONE-HUNDRED ($100) DOLLARS. THE LIMITATIONS OF DAMAGES
+ SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN
+ DROPBOX AND YOU. </span></p>
+
+
+
+ <h2>Severability</h2>
+
+ <p><span>In the event that any provision of these Terms of Service is held
+ to be invalid or unenforceable, the remaining provisions of these Terms of
+ Service will remain in full force and effect.</span></p>
+
+
+ <h2>Waiver</h2>
+
+ <p><span>The failure of Dropbox to enforce any right or provision of these
+ Terms of Service will not be deemed a waiver of such right or provision.</span></p>
+
+
+
+ <h2>Controlling Law and Jurisdiction</h2>
+
+ <p><span>These Terms of Service and any action related thereto will be
+ governed by the laws of the State of California without regard to its conflict
+ of law provisions. The exclusive jurisdiction and venue of any action with
+ respect to the subject matter of these Terms of Service will be the state and
+ federal courts located in San Francisco County, California, and each of the
+ parties hereto waives any objection to jurisdiction and venue in such courts.</span></p>
+
+
+ <h2>Entire Agreement</h2>
+
+ <p><span>These Terms of Service are the entire and exclusive agreement
+ between Dropbox and you regarding the Site, Content<b>,</b> Services and Your
+ Files, and these Terms of Service supersede and replace any prior agreements
+ between Dropbox and you regarding the Site, Content<b>, </b>Services and Your
+ Files.</span></p>
+
+</div>
+</div>
+<div id="privacy-content" class="content-tab" style="display:none;">
+ <div id="privacy-policy">
+
+ <p>
+ Dropbox provides this Privacy Policy to inform you of our policies and procedures regarding the collection, use and disclosure of personal information we receive from users of www.getdropbox.com (this “<b><i>Site</i></b>”). This Privacy Policy applies only to information that you provide to us through this Site. Our Privacy Policy may be updated from time to time, and we will notify you of any material changes by posting the new Privacy Policy on the Site at <a href="/privacy">http://www.getdropbox.com/privacy</a>
+ </p>
+
+ <h2>1. Information Collection: The Personally Identifiable Information We Collect</h2>
+ <p>
+ In the course of using this Site, you may provide us with personally identifiable information. This refers to information about you that can be used to contact or identify you, and information on your use of and activities at our Site that may be connected with you (“<b><i>Personal Information</i></b>”). Personal Information that we collect may include, but is not limited to, your name, phone number, credit card or other billing information, email address and home and business postal addresses. Personal Information may also include information you supply to us concerning your preferences and interests expressed in the course of use of our Site.
+ </p>
+ <p>
+ When you visit the Site, our servers automatically record information that your browser sends whenever you visit a website. This information may include, but is not limited to, your computer’s Internet Protocol address, browser type, the web page you were visiting before you came to our Site and information you search for on our Site. Like many websites, we may also use “cookies” to collect information. A cookie is a small data file that we transfer to your computer’s hard disk for record-keeping purposes. We may use “persistent cookies” to save your registration ID and login password for future logins to the Site; and we use “session ID cookies” to enable certain features of the Site, to better understand how you interact with the Site and to monitor aggregate usage and web traffic routing on the Site. You can instruct your browser, by changing its options, to stop accepting cookies or to prompt you before accepting a cookie from the websites you visit. If you do not accept cookies, however, you may not be able to use all portions of the Site or all functionality of our services.
+
+ </p>
+
+ <h2>2. How We Use Personal Information</h2>
+ <p>
+ Personal Information is or may be used for the following purposes: (i) to provide and improve our Site, services, features and content, (ii) to administer your use of our Site, (iii) to enable you to enjoy and easily navigate the Site, (iv) to better understand your needs and interests, (v) to fulfill requests you may make, (vi) to personalize your experience, (vii) to provide or offer software updates and product announcements, and (viii) to provide you with further information and offers from us or third parties that we believe you may find useful or interesting, including newsletters, marketing or promotional materials and other information on services and products offered by us or third parties. If you decide at any time that you no longer wish to receive any such communications, please follow the “unsubscribe” instructions provided in any of the communications sent to you, or update your “account settings” information. (See “<b>Changing or Deleting Information</b>,” below.)
+ </p>
+ <p>
+ We use information we obtain by technical means (such as the automatic recording performed by our servers or through the use of cookies) for the above purposes and in order to monitor and analyze use of the Site and our services, for the Site’s technical administration, to increase our Site’s functionality and user-friendliness, to better tailor it to your needs, to generate and derive useful data and information concerning the interests, characteristics and website use behavior of our users, and to verify that visitors to the Site meet the criteria required to process their requests.
+ </p>
+
+ <h2>3. Information Sharing and Disclosure</h2>
+ <p>
+ <u><i>Dropbox Users</i></u>. We will display your Personal Information in your profile page and elsewhere on the Site according to the preferences you set in your account. Any information you choose to provide should reflect how much you want other Dropbox users to know about you. We recommend that you guard your anonymity and sensitive information, and we encourage users to think carefully about what information about themselves they disclose in their profile pages. You can review and revise your profile information at any time.
+
+ </p>
+ <p>
+ <u><i>Service Providers, Business Partners and Others</i></u>. We may employ third party companies and individuals to facilitate our service, to provide the service on our behalf, to perform Site-related services (including but not limited to data storage, maintenance services, database management, web analytics, payment processing, and improvement of the Site’s features) or to assist us in analyzing how our Site and service are used. These third parties have access to your Personal Information only for purposes of performing these tasks on our behalf.
+ </p>
+ <p>
+ <u><i>Compliance with Laws and Law Enforcement</i></u>. Dropbox cooperates with government and law enforcement officials and private parties to enforce and comply with the law. We will disclose any information about you to government or law enforcement officials or private parties as we, in our sole discretion, believe necessary or appropriate to respond to claims and legal process (including but not limited to subpoenas), to protect the property and rights of Dropbox or a third party, to protect the safety of the public or any person, or to prevent or stop any activity we may consider to be, or to pose a risk of being, illegal, unethical, inappropriate or legally actionable.
+ </p>
+ <p>
+ <u><i>Business Transfers</i></u>. Dropbox may sell, transfer or otherwise share some or all of its assets, including your Personal Information, in connection with a merger, acquisition, reorganization or sale of assets or in the event of bankruptcy.
+ </p>
+
+ <h2>4. Changing or Deleting Your Information</h2>
+ <p>
+
+ You may review, update, correct or delete the Personal Information provided in your registration or account profile by changing your “account settings.”
+ </p>
+
+ <h2>5. Security</h2>
+ <p>
+ Dropbox is very concerned with safeguarding your information. We employ reasonable measures designed to protect your information from unauthorized access.
+ </p>
+
+ <h2>6. Our Policy Toward Children</h2>
+ <p>
+ This Site is not directed to children under 18 years of age. We do not knowingly collect personally identifiable information from children under 13. If a parent or guardian becomes aware that his or her child has provided us with Personal Information without their consent, he or she should contact us at <a href="mailto:privacy@getdropbox.com">privacy@getdropbox.com</a>. If we become aware that a child under 13 has provided us with Personal Information, we will delete such information from our files.
+ </p>
+
+ <h2>7. Contacting Us</h2>
+ <p>
+ If you have any questions about this Privacy Policy, please contact us at <a href="mailto:privacy@getdropbox.com">privacy@getdropbox.com</a>.
+ </p>
+ </div>
+</div>
+
+<div id="dmca-content" class="content-tab" style="display:none;">
+ <div>
+ <p>
+ Dropbox (“<b><i>Dropbox</i></b>”) respects the intellectual property rights of others and expects its users to do the same. In accordance with the Digital Millennium Copyright Act of 1998, the text of which may be found on the U.S. Copyright Office website at <a href="http://www.copyright.gov/legislation/dmca.pdf">http://www.copyright.gov/legislation/dmca.pdf</a>, Dropbox will respond expeditiously to claims of copyright infringement committed using the Dropbox service and/or the Dropbox website (the “<b><i>Site</i></b>”) if such claims are reported to Dropbox’s Designated Copyright Agent identified in the sample notice below.
+
+ </p>
+ <p>
+ If you are a copyright owner, authorized to act on behalf of one, or authorized to act under any exclusive right under copyright, please report alleged copyright infringements taking place on or through the Site by completing the following DMCA Notice of Alleged Infringement and delivering it to Dropbox’s Designated Copyright Agent. Upon receipt of Notice as described below, Dropbox will take whatever action, in its sole discretion, it deems appropriate, including removal of the challenged content from the Site.
+ </p>
+
+ <div class="graybox">
+ <center><p>DMCA Notice of Alleged Infringement (“<b>Notice</b>”)</p></center>
+
+ <ol>
+ <li><p>Identify the copyrighted work that you claim has been infringed, or - if multiple copyrighted works are covered by this Notice - you may provide a representative list of the copyrighted works that you claim have been infringed.</p></li>
+
+ <li><p>Identify the material or link you claim is infringing (or the subject of infringing activity) and to which access is to be disabled, including at a minimum, if applicable, the URL of the link shown on the Site or the exact location where such material may be found.</p></li>
+
+ <li><p>Provide your company affiliation (if applicable), mailing address, telephone number, and, if available, email address.</p></li>
+
+ <li>Include both of the following statements in the body of the Notice:
+ <ul>
+ <li><p>“I hereby state that I have a good faith belief that the disputed use of the copyrighted material is not authorized by the copyright owner, its agent, or the law (e.g., as a fair use).”</p></li>
+ <li><p>“I hereby state that the information in this Notice is accurate and, under penalty of perjury, that I am the owner, or authorized to act on behalf of, the owner, of the copyright or of an exclusive right under the copyright that is allegedly infringed.”</p></li>
+ </ul>
+ </li>
+ <li><p>Provide your full legal name and your electronic or physical signature.</p></li>
+ </ol>
+
+ Deliver this Notice, with all items completed, to Dropbox’s Designated Copyright Agent:<br/><br/>
+
+ <div>
+ Copyright Agent<br/>
+ c/o Dropbox, Inc.<br/>
+ 101 First Street #213<br/>
+ Los Altos, CA 94022<br/>
+ <a href="mailto:copyright@getdropbox.com">copyright@getdropbox.com</a>
+ </div>
+ </div>
+ </div>
+</div>
+
+<div id="pricingterms-content" class="content-tab" style="display:none;">
+
+ <h2>Account Pricing Terms and Conditions</h2>
+
+ <h5>Premium Accounts</h5>
+ <p>
+ Dropbox offers you the option of increasing your account storage space beyond 2 GB for a fee. By doing so, your account will be converted to a Premium Account and will not be subject to the restrictions placed on Free Accounts as described below.
+ </p>
+ <p>
+ Dropbox accepts credit cards and will automatically charge your credit card monthly or yearly, depending upon which Premium Account you select. If any fee is not paid in a timely manner, or Dropbox is unable to process your transaction using the credit card information provided, Dropbox reserves the right to revoke access to your Dropbox account and Files. If you do not bring your Dropbox balance current within five (5) days after Dropbox provides you with notification that your account is in arrears, Dropbox reserves the right to use our discretion to delete some or all of Your Files so as to reduce your storage space to below 2 GB, and to convert your Dropbox Premium Account to a Free Account (which is subject to the restrictions described below).
+ </p>
+
+ <h5>Billing</h5>
+ <p>
+ The fees for your Premium Account will be billed from the date you elect, or convert to, a Premium Account and on each monthly or yearly renewal thereafter unless and until you cancel your account. Click on the link on your "Account" page to see the commencement date for your next renewal period. Dropbox will automatically bill your credit card each month or year on the calendar day corresponding to the commencement of your Premium Account. In the event your Premium Account began on a day not contained in a given month or year, Dropbox will bill your credit card on the last day of such month or year. For example, if your Premium Account began on January 31st, February 28th is the next time your credit card would be billed. You acknowledge that the amount billed each month or year may vary for reasons that include, differing amounts due to promotional offers, differing amounts due to changes in your account, or changes in the amount of applicable sales tax, and you authorize us to charge your credit card for such varying amounts. Dropbox may also periodically authorize your credit card in anticipation of account or related charges. All fees and charges are nonrefundable and there are no refunds or credits for partially used periods.
+ </p>
+ <p>
+ Should you elect to upgrade your Premium Account to a larger amount of storage space, the commencement date for your next renewal period will be reset and you will be billed for the first month or year of the upgraded level of service on a pro-rata basis. For example, if you begin your monthly billed Premium Account on February 15th, your next payment would be due on March 15th. On March 22, you upgrade your Premium Account to a larger amount of storage space and pay the new amount associated with the upgraded Premium Account you have selected, less the amount equal to 7 days at your previous Premium Account rate. Your next payment would then be due on April 22.
+ </p>
+ <p>
+ Dropbox may change the fees and charges in effect, or add new fees and charges from time to time, but we will give you advance notice of these changes by email. If you want to use a different credit card or if there is a change in your credit card validity or expiration date, you may edit your information by accessing your "Account" page. If your credit card reaches its expiration date, your continued use of the Dropbox constitutes your authorization for us to continue billing that credit card and you remain responsible for any uncollected amounts. It is your responsibility to keep your contact information and payment information current and updated.
+ </p>
+
+ <h5>Cancelling Your Account</h5>
+ <p>
+ Your Dropbox Premium Account will continue in effect unless and until you cancel your Premium Account or we terminate it. You must cancel your Premium Account before it renews each month or year in order to avoid billing of the next month's or year's fees to your credit card. Dropbox will bill the monthly or yearly fees associated with your Premium Account plus any applicable tax to the credit card you provide to us during registration (or to a different credit card if you change your account information).
+ </p>
+ <p>
+ Dropbox Premium Accounts are prepaid and are non-refundable. DROPBOX DOES NOT PROVIDE REFUNDS OR CREDITS FOR ANY PARTIAL MONTHS OR YEARS. You may cancel your Dropbox Premium Account at anytime, and cancellation will be effective immediately. If you wish to cancel your Premium Account you may so via your "Account" page. Should you elect to cancel your Premium Account, please note that you will not be issued a refund for the most recently (or any previously) charged monthly fees.
+ </p>
+
+ <p>
+ By signing up for a Dropbox Premium Account and providing Dropbox with your payment account information, you hereby agree to these payment terms and conditions.
+ </p>
+
+ <h5>Free Accounts</h5>
+ <p>
+ Dropbox allows you to store up to 2 GB free of charge. Dropbox reserves the right to terminate Free Accounts at any time, with or without notice. Without limiting the generality of the foregoing, if a Free Account is inactive for ninety (90) days, then Dropbox may delete any or all of Your Files without providing additional notice.
+ </p>
+ <p>
+ For further information regarding your Dropbox Premium or Free Account, please see the Dropbox <a href="/terms">Terms of Service</a>.
+ </p>
+
+</div>
+<script type="text/javascript">
+Event.observe(window, 'load', function() {
+
+ Tabs.init();
+ setInterval("Tabs.check_url('terms');", 300);
+});
+</script>
+
+ </div>
+ <br class="clear"/>
+ </div>
+
+
+ <div id="ghost-icons" style="cursor: move; height: 0; width:0;"></div>
+ <br class="clear"/>
+ <!-- Footer -->
+ <div id="footer">
+ <div style="width: 790px; margin: 0 auto">
+ <p id="copyright">
+ &copy; 2009 Dropbox<br/>
+ </p>
+ <div class="footer-col">
+ <ul>
+ <li class="header">Dropbox</li>
+ <li><a href="/">Home</a></li>
+ <li><a href="/install">Install</a></li>
+ <li><a href="/pricing">Pricing</a></li>
+ <li><a href="/tour">Tour</a></li>
+ <li><a href="http://wiki.getdropbox.com/">Wiki</a></li>
+ </ul>
+ </div>
+ <div class="footer-col">
+ <ul>
+ <li class="header">About Us</li>
+ <li><a href="/about">Our Team</a></li>
+ <li><a href="/terms">Policies</a></li>
+ <li><a href="http://blog.getdropbox.com/">Dropbox Blog</a></li>
+ <li><a href="http://twitter.com/dropbox">Twitter</a></li>
+ </ul>
+ </div>
+ <div class="footer-col">
+ <ul>
+ <li class="header">Support</li>
+ <li><a href="/help">Help Center</a></li>
+ <li><a href="/forum">Forums</a></li>
+ <li><a href="#" onclick="return Home.showFeedback();">Feedback</a></li>
+ <li><a href="/contact">Contact Us</a></li>
+ </ul>
+ </div>
+ <div class="clear"></div>
+ </div>
+ </div>
+<script type="text/javascript">
+ document.observe("dom:loaded", function() {
+ e = $("feedback-link");
+ if (e)
+ new Effect.Highlight(e , {duration: 0.5});
+
+ Dropdown.init();
+ });
+</script>
+</div>
+<script type="text/javascript">
+if (_gat) {
+ var pageTracker = _gat._getTracker("UA-279179-2");
+ pageTracker._initData();
+ Element.observe(window, 'load',pageTracker._trackPageview);
+}
+</script>
+<div id="ieconsole" style="position: absolute; top: 0; left: 0; font-family: Courier"></div>
+</body>
+</html>