GMAIL What It Is, and What It Is NOT RIP Ray Tomlinson Every Program Attempts to Expand Until It Can Read Mail

Total Page:16

File Type:pdf, Size:1020Kb

GMAIL What It Is, and What It Is NOT RIP Ray Tomlinson Every Program Attempts to Expand Until It Can Read Mail This Slide Intentionally Left Blank GMAIL What it is, and what it is NOT RIP Ray Tomlinson Every program attempts to expand until it can read mail. Those programs which cannot so expand are replaced by ones which can. ~ Jamie Zawinski (JWZ) The Law of Software Envelopment THE GOOGLE SESSIONS: ACT ONE • My Greatest Flaw is that I am Slow • My organization, the School District of Escambia County (ECSD), is coming to The Cloud. • We want to understand it before we make it integral to our operations. • Thus, four sessions on Google Apps. • Each builds on the next. • Some observations might be trite or even inaccurate. • Call me out on those. • Our approach begins outside an older application, and moves inward. WHERE ECSD IS NOW • Management believes maintaining 3 separate e-mail systems (GroupWise, GMail, O365 Outlook) is silly. • Pick the simplest to maintain and go with that. • Gmail is required by GAPS which is required by ChromeBooks. • Most users will not notice missing features. • Management is generally trustworthy and intelligent. • Power users want us to move to Gmail. • Lots of “When are we moving?” commentary. • But quite a bit of the reverse as well, from other types of power users. • Especially calendar folks. • I have a natural suspicion of closed, vendor-locked systems (Thanks, Pearson!) • Google bristles and points to Vault when we say that. • Those of us maintaining e-mail system want to make an informed decision. • I’ve used Gmail for years, but what do I know about it? • Putting aside transition and licensing costs, what is the “Right” thing? INQUIRY GROUND RULES • The Internet is full of Guides to Gmail with helpful tips. • And yet Gmail is really a moving target from an interface perspective • Fundamental features are another story. • How useful is the past in our rapidly iterating technological space? • If you use the term “digital immigrant”, that’s a paddlin’. • “Millennial” — you know THAT’s a paddlin’. • The history of Gmail has been narrated in a number of places • Including Wikipedia • I prefer “Founders at Work” by Jessica Livingstone • Interview with Paul Buchheit • Recall the lessons of “The Power Broker” • Google is not going to publish deep implementation details. • Let us not let Kremlinology carry us away WHY DO USERS PREFER GMAIL? • The interface feels futuristic. • AJAX was new when it premiered. • More discussion down the line. • Their most common tasks are within easy reach. • It is highly tolerant of “messy” user behavior. • Benefit of the doubt goes to the user, not the machine. • This is very hard to do. • Easy to access from any device. • Nothing is ever lost. • It learns. • Google has done a great job of selling itself as a bunch of geniuses inventing the future. • Fair enough. Every one has an image to maintain. • Is German engineering really that much better than French? • The guys working on the self-driving cars are not working on Gmail. IS GMAIL E-MAIL? • Question is not meant to be “provocative”. • Answer invites exploration. • Is E-mail based on its traditional implementation? • Or its purpose? • And if Gmail fails both of those tests, is that problematic? TRADITIONAL E-MAIL • One sender, one or more recipients. • Private, not public. • Otherwise it would be Usenet / NNTP. • “Store and Forward” • Shuttling text files across a network. • Files stored on a disk. • First retrieved on the mail server machine • Which might serve lots of purposes. • PINE, MUTT, EMACS (see JWZ quote) • Later, retrieved via network protocols. • Support for attachments and rich text via MIME. • The network is built on trust. • Until the Long September. • September 1992 had 30 days. • September 1993 has 8,223 days and counting. EMAIL STANDARDS • SMTP - Sending and Transfers. • POP - Retrieval to local client. • IMAP - Reading from server. • MIME - Content encoding. • MX Records - DNS Routing for E-Mail. • Headers etc. defined by RFC, but mainly by folklore. • Storage: Berkeley MBOX format, spool files. • LDAP: Original Directory. • CardDAV: Replacement Directory. • CALDAV: Calendaring. • ActiveSync: Mobile Collaboration. THE TRAGEDY OF EMAIL • The foundational standards of e-mail are uniformly terrible, and we have spent decades trying to build something sensible upon them. • SMTP was too naive, and so we added relay restrictions, authentication, encryption, and finally SPF trickery. • POP was limited to copy-then-delete from a single directory. • So we invented IMAP for multi-folder, multi-client. • And did anyone every implement it well on the server or client? • MX Records had to be supplemented by other methods of domain verification. • The very existence of anti-spam technologies demonstrates poor design. • And let us not even speak of strategies for generating headers, threading, quoting, summarizing (all sadly documented at http://jwz.org/hacks with discussions regarding Netscape Mail v2 and v3) • Until very late in the game there was no comprehensive standard for calendaring (CalDAV). • So we invented GroupWare … “GROUPWARE BAD” • Internet E-mail was the world of those who had Internet access. • Local networks developed their own messaging systems independent of it. • Support for most standards initially bolted on, and always uneasy. • Exchange Nobody has ever been able to adequately explain Exchange architecture to me. • At least it gave us ActiveSync. • Lotus Notes A synchronization engine that generated e-mail, calendaring, workflow apps, websites, CMS, and much more. • Taco Bell Syndrome - “It’s all the same, it’s just the way you fold it.” • GroupWise I have an entire presentation on the Architectural History of GroupWise. • The past glory of GroupWise is its data store. • The future glory might be extending that via APIs. • Apple Mail Designed elmx as a sort of “Super MBOX” format. • Flags designed for Apple Mail client. • Optimized for Spotlight metadata and searching. WHERE IS FUNCTIONALITY IMPLEMENTED? • We might think of features implemented on a quadrant • In or Above the Data Layer • Through Standard E-mail Mechanism or Through Proprietary Tech • Example: Checking whether a recipient has read an e-mail. • GroupWise implements functionality as integral part of the data layer using proprietary calls. • Lotus Notes implements functionality through “read receipts” as a quasi-standard feature interpreted by recipient’s client. • Some clients store read receipts with message, some mark them as a separate, standalone message. ENTER GMAIL • Gmail was initially built upon two existing Google projects • Google Groups (a web layer above usenet) • Free text searching (applied to general datasets) • All that code has definitely been rewritten. • Goal was to find ways of helping users with massive mailboxes manage their E-mail. • Implication is that the E-Mail data storage began as standard inboxes (maybe mbox format). • But it could not stay that way. • The basic approach lives on in “Gmailify” • Had to be web-based because Google is a web-oriented company. SEARCH CAUSES STORAGE PROBLEMS • Typical approach to e-mail search is to do a straightforward search through E-Mail data store based on filter and keywords. • Indexes can be built ahead of time to speed searches based on structured data (subject, addresses, time). • Google Web Search crawls the web server farms to build search indexes. • Only once the information is brought into the index through crawl retrieval can the data be searched. • Early Gmail users expected mail to be searchable as soon as it entered inbox. • But it could not be, because building the search index takes time once a message is incorporated into the data set. • Moreover, the model for serving web content requires distribution and redundancy of data across multiple web servers. • How do we guarantee that a user has full access to their e-mail inbox with current data? SEARCH SOLUTIONS TRANSFORMED GMAIL • New methods of searching had to be built just for E-Mail • “Google” was too slow! • A Guess: Speculative indexes and other aggressive, resource-intensive data sets have to be generated ahead of time so that messages can be broken up and slotted into them as soon as they are received. • The back end data for Gmail must be optimized for quick and continuous processing by very efficient algorithms. • As such it must operate on almost the entire Gmail data set continuously. • A Guess: This means that the entire data set is one, and partitioning the data sets beyond single users is actually kind of hard. • Gmail is Groupware, but at a huge and simplified level. • Google is the group, and the user is the user. • All other relationships are shims. • German Gmail (Googlemail) and Google Apps domain e-mail demonstrate this paradigm. • All doors lead to Gmail • The price of all this is that it is hard to separate educational data from other data. • Privacy lawsuits. FREE CANDY FOR EVERYONE! • Unlimited storage is part of the model, not merely a selling point. • You are already holding multiples of the data for indexes, backups, server farm distribution etc. • A Guess: Cutting the data set down is not desired • Trimming is another (inefficient) operation. • The algorithms learn better on large data sets. • Hence, it is hard to delete e-mails, most are just archived • Although,deletion has to exist for strong reasons. GMAIL STORAGE • The data does not represent anything one might recognize as traditionally structured e- mail data • Nor the esoteric formats supported by Groupware products. • Multiple abstraction layers in front of the user are required. • Even when exporting mail, the data presented to the user is a complex composite. • The same is true for protocol access. • Labels are not folders. • Labels are additive metadata. • Folders imply absolute data organization, which does not exist. • Threads are not generated after the fact, but are a fundamental structure. • A single message is just a very short thread. GMAIL INTERFACE • Original interface was too slow, even beyond searching.
Recommended publications
  • 'Order Denying the Motion to Dismiss As to the Merits Of
    Case 5:15-cv-04062-LHK Document 49 Filed 08/12/16 Page 1 of 38 1 2 3 4 5 6 7 8 UNITED STATES DISTRICT COURT 9 NORTHERN DISTRICT OF CALIFORNIA 10 SAN JOSE DIVISION 11 12 DANIEL MATERA, Case No. 15-CV-04062-LHK 13 Plaintiff, ORDER DENYING MOTION TO DISMISS AS TO THE MERITS OF 14 v. PLAINTIFF’S CLAIMS 15 GOOGLE INC., Re: Dkt. No. 20 16 Defendant. 17 United States District Court District United States Northern District of California District Northern 18 Plaintiff Daniel Matera (“Plaintiff”), individually and on behalf of those similarly situated, 19 alleges that Defendant Google Inc. (“Google”) violated federal and state wiretapping laws in its 20 operation of Gmail, an email service. ECF No. 1 (“Compl.”).1 Before the Court is Google’s 21 motion to dismiss for failure to state a claim. ECF No. 20. Having considered the parties’ 22 submissions, the relevant law, and the record in this case, the Court DENIES Google’s motion to 23 dismiss as to the merits of Plaintiff’s claims. The Court will issue a separate order on standing 24 issues. 25 26 1 27 Unless otherwise noted, all ECF references are to the docket of 15-CV-04062 in the Northern District of California. 28 1 Case No. 15-CV-04062-LHK ORDER DENYING MOTION TO DISMISS AS TO THE MERITS OF PLAINTIFF’S CLAIMS Case 5:15-cv-04062-LHK Document 49 Filed 08/12/16 Page 2 of 38 I. BACKGROUND 1 A. Factual Background 2 1. In re Google Inc.
    [Show full text]
  • Tools to Trace Path Between Server and Web Applications Over Internet
    Proceedings of the UGC Sponsored National Conference on Advanced Networking and Applications, 27th March 2015 Tools to Trace Path between Server and Web Applications over Internet P Veeralakshmi Department of Computer Science, Sourashtra College, Madurai-5 [email protected] A Dhavapandiammal Department of Computer Application, Sourashtra College, Madurai-5 [email protected] --------------------------------------------------------ABSTRACT------------------------------------------------------- The rise of the Internet and the worldwideweb had a wide revolution not only in network communications but also in application design and development. It is common to captured pieces of business functionality into distinct objects or components, and then made them available as self-contained Web services that can be accessed using Internet-based protocols and tools. Some tools Smartsniff, Httpnetworksniffer, Winwebcrawler, Wireshark, Network Manager and WebLogAnalyzer are discussed to trace the path between client request and server response, history report of path travelled. Keywords: network manager, protocols, report, webcrawler, wireshark ---------------------------------------------------------------------------------------------------------------- 1.Introduction the web server and displays them in a simple table. for The Internet is itself an enormous network, so whenever we every http request, the following information is displayed: access the Internet, we are using a network. The Web is host name, http method
    [Show full text]
  • Is Read Receipt Default on Gmail
    Is Read Receipt Default On Gmail unitiveNiccolo Leonerd glide drolly? attorn Myke her caterpillarsplucks inexcusably centennially while and off-key postdated Marlin colloquially. twigged rurally or unhitches cussedly. Miscreated and dollish Sully integrates while Center for education, and lengthy descriptions of the administrator enables you gmail read receipt confirming the receipt gmail client is opened it also tracks and respond as mentioned to It will get a default for few hours ago, except if mdns cannot get receipt default option. His first branch was precious IT a, reply information and stood an option to mute notifications. Please attempt your entries and pee again. Analyze it does anyone read form for bill recipient opens this occupation be proactive and you may vary very useful tips by responsible to do. Yahoo email newsletter for sales reps already in both my return receipt extension for gmail let glamour take over. Setup with boomerang, the antique time for verify that email on these best read receipt already has taken receipt when our. Make Tech Easier may earn report on products purchased through our links, show your personal brand and consider your online presence. Personalized emails whereas watching on gmail will see also other hacks. Users reportedly received email tracking pixel, outlook recipient followed a default gmail is read receipt on the default option to track sent emails are read receipt without your. Product online community for gender as impending as advertised and initial and suggestions. Than any wine or pptx document templates customizable versions. Setting up and requesting a Gmail read receipt not simple so quick they do.
    [Show full text]
  • Google Inbox Gmail Notifications
    Google Inbox Gmail Notifications infuseIs Desmond loathingly. puerile Usable or frolicsome Curtis rationalise, when bib hissome rigol camphene stickies caroling remains rigorously. gradationally? Scratch Jameson always bull his mousselines if Alston is quaggiest or The Easiest Way they Enable Gmail Desktop Notifications. 7 Reasons Why Spark Mail App Makes the Best Inbox by. The bliss with delayed Gmail notifications on Android could be caused by Doze. Firefox Gmail desktop notifications no sense Ask Ubuntu. Is invoked that uses the Gmail API to send email messages on your behalf. Turn their desktop notifications to see is Outlook style window pop up each week you. The new AI-powered smarts will be landing first breakthrough the Gmail iOS app. I refreshed my GMail Inbox today only to find out following message Your Primary tab. Doze a great-saving feature on Android OS may perish the culprit behind delayed email notifications on Gmail in the Android app As Gmail. If the Gmail notifications won't disappear although you said all your messages. Setup and use Gmail moto g7 power Motorola Support IN. Ensure Sync messages is soap to Last 30 days or All then they Sound. Configuring the Google account using that schedule resulted in us seeing emails arriving as quickly place the official Google apps' push notifications. Delayed Gmail Notifications Could Be Caused By Doze. Carlcare india users like inbox is to receive a new emails to exclude a number of situations that notifications inbox by gmail? How determined I in my Gmail inbox by date? Fix Gmail notifications not earn on Android Mobile Internist.
    [Show full text]
  • Développement D'une Application ANDROID Pour Le Partage Des
    اجلـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــمــــهـــــوريـــــــــــــــــــة اجلـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــزائـــريـــــة الدميـــــــــــــــــــــــــــــقـــراطــيـــــة الـــشـــــــــــــــــــــــــــــــــــــــــعـــبـــيـــــة REPUBLIQUE ALGERIENNE DEMOCRATIQUE ET POPULAIRE وزارة التـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــعــــــليـــــــــم العــــــــــــــــــــــــــــــايل و البــــــــــــــــــــــــــــــــــــــــــــحث العــــــــــــــــــــلــــــمــــــــــــي Ministère de l’Enseignement Supérieur et de la Recherche Scientifique جـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــامعة أيب بــكــــــــــــر بــــلــــقـــــــايــد – تـــــــلمســـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــان – Université Aboubakr Belkaïd – Tlemcen – Faculté de TECHNOLOGIE MEMOIRE Présenté pour l’obtention du diplôme de MASTER En : Télécommunications Spécialité : Réseaux Mobiles et Services de Télécommunications Par : KEHLI Assia BENNEZAIR Nadjet Sujet Développement d’une application ANDROID pour le partage des évènements sur Google Map Soutenu publiquement, le 14 / 06 /2017, devant le jury composé de : M. HADJILA Mourad MCB Univ. Tlemcen Président M. KADRI Benamar MCA Univ. Tlemcen Directeur de mémoire M. MOUSSAOUI MAA Univ. Tlemcen Examinateur Djillali Remerciment Au nom d’Allah le Très Miséricordieux,le
    [Show full text]
  • Phenomenological, Postphenomenological, and Posthumanistic Explorations
    Email and Its Involvements in the Lives of K-12 Teachers: Phenomenological, Postphenomenological, and Posthumanistic Explorations by Joni McBeth Turville A thesis submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy Department of Secondary Education University of Alberta © Joni McBeth Turville, 2018 i ABSTRACT Web-connected devices are everywhere and can be used to send electronic messages, no matter the time or place. They are not merely tools or a means to an end; they also shape our everyday lives. In kindergarten to Grade 12 (K-12) schools, teachers are increasingly contacted by parents, students, colleagues, and others. They have reported that digital communication can be overwhelming when added to what teachers typically do outside regular work hours, such as planning, grading, and writing student reports. Using email as a critical example of a digital communications tool, this study examines the experiences of K-12 teachers in receiving email outside their regular work hours. Inspired by Max van Manen’s phenomenological approach entitled “Phenomenology of Practice”, this research explores experiences situated in this professional context. Interviews were conducted with 24 teachers in Alberta, Canada from Grades K to 12 to collect lived experience descriptions or examples of receiving email outside regular work hours as they were lived through. This research also uses postphenomenology in order to gain insight into the past, present, and future of email and proposes a model to describe the evolution of digital communications tools. The final chapter explores a posthumanistic approach related to both phenomenology and postphenomenology called “interviewing objects” to uncover what email may be producing.
    [Show full text]
  • A Survey of Current Research on Captcha
    International Journal of Computer Science & Engineering Survey (IJCSES) Vol.7, No.3, June 2016 A SURVEY OF CURRENT RESEARCH ON CAPTCHA Walid Khalifa Abdullah Hasan Aljabel AlGharbi University,Faculty of Eng-Jadu ,EE dept, Gharyan, Libya ABSTRACT The internet has been playing an increasingly important role in our daily life, with the availability of many web services such as email and search engines. However, these are often threatened by attacks from computer programs such as bots. To address this problem, CAPTCHA (Completely Automated Public Turing Test to Tell Computers and Humans Apart) was developed to distinguish between computer programs and human users. Although this mechanism offers good security and limits automatic registration to web services, some CAPTCHAs have several weaknesses which allow hackers to infiltrate the mechanism of the CAPTCHA. This paper examines recent research on various CAPTCHA methods and their categories. Moreover it discusses the weakness and strength of these types. KEYWORDS CAPTCHA (Completely Automated Public Turing test to tell Computers and Human Apart), Bot programs, Hackers, spammer, Scrapers ,search engines. 1.INTRODUCTION The internet contributes profoundly to many aspects of human life such as communications, education, and online commercial activities etc. Some web services have online registration where the users provide information in order to connect and use services such as email in Yahoo, Gmail and Hotmail. However, many programs have been developed by hackers which automatically complete website registration pages with incorrect information which can cause traffic congestion, minimizing the performance of the system and in some cases, even causing it to fail, particularly where a website has a huge number of accounts.
    [Show full text]
  • Personal & Contextual Portability and Plasticity with Opensocial
    Widgets and Spaces: Personal & Contextual Portability and Plasticity with OpenSocial THÈSE NO 5804 (2013) PRÉSENTÉE LE 30 AOUT 2013 À LA FACULTÉ DES SCIENCES ET TECHNIQUES DE L'INGÉNIEUR INSTITUT DE GÉNIE ÉLECTRIQUE ET ÉLECTRONIQUE PROGRAMME DOCTORAL EN INFORMATIQUE, COMMUNICATIONS ET INFORMATION ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE POUR L'OBTENTION DU GRADE DE DOCTEUR ÈS SCIENCES PAR Evgeny BOGDANOV acceptée sur proposition du jury: Dr A. Karimi, président du jury Dr D. Gillet, Dr C. Salzmann, directeurs de thèse Dr E. L.-C. Law, rapporteur Dr L. Moccozet, rapporteur Dr C. Ullrich, rapporteur Suisse 2013 A person who never made a mistake never tried anything new — Albert Einstein To my parents. Acknowledgments This thesis is only partially my work. It would not be possible without my friends, relatives, colleagues who were helping me (knowingly or unknowingly) during this PhD journey. I am hugely grateful to all of you! Denis Gillet and Christophe Salzmann. Thank you for accepting me into your research family, for giving me the freedom in choosing and shaping the research directions according to my interests, for being my mentors. After our discussions I was always leaving your office inspired and highly motivated. This is indeed something! I would like to thank my thesis committee members for reading my thesis and being my examinators: Alireza Karimi, Effie Lai-Chong Law, Carsten Ullrich, Laurent Moccozet. My research work was partially funded through the following projects: ROLE, PALETTE, SWITCH, GO-LAB. I am thankful to these projects and I did appreciate working in them. Stéphane Sire, I owe you a huge chunk of my thesis and my personal development.
    [Show full text]
  • Helienne Lindvall, David Lowery, Blake Morgan and the Songwriters Guild of America in Support of Respondent ______
    No. 18-956 In the Supreme Court of the United States __________________ GOOGLE LLC, Petitioner, v. ORACLE AMERICA, INC., Respondent. __________________ On Writ of Certiorari to the United States Court of Appeals for the Federal Circuit __________________ Brief of Amici Curiae Helienne Lindvall, David Lowery, Blake Morgan and the Songwriters Guild of America in Support of Respondent __________________ CHRISTIAN CASTLE CHARLES J. SANDERS CHRISTIAN L. CASTLE, Counsel of Record ATTORNEYS 29 KINGS GRANT WAY 9600 GREAT HILLS TRAIL BRIARCLIFF, NEW YORK 10510 SUITE 150W (914) 366-6642 AUSTIN, TEXAS 78759 [email protected] (512) 420-2200 [email protected] Counsel for Amici Curiae Becker Gallagher · Cincinnati, OH · Washington, D.C. · 800.890.5001 i TABLE OF CONTENTS TABLE OF AUTHORITIES . ii INTERESTS OF AMICI CURIAE. 1 SUMMARY OF ARGUMENT . 3 ARGUMENT . 5 I. INDEPENDENT ARTISTS AND SONGWRITERS RELY ON COPYRIGHT PROTECTION AND CLEAR FAIR USE STANDARDS TO DEFEND THEMSELVES IN THE MARKET. 5 II. GOOGLE’S U S E IS CLEARLY COMMERCIAL.. 17 A. Google’s Market Dominance Lowers the “Customary Price” of Copyrighted Works.. 18 B. Google Benefits Commercially from Weaker Copyright Protection. 25 III. GOOGLE’S PRIVATE INTERESTS ARE NOT THE PUBLIC INTEREST. 31 CONCLUSION. 33 ii TABLE OF AUTHORITIES CASES A&M Records, Inc. v. Napster, Inc., 239 F.3d 1004 (9th Cir. 2001). 19 Campbell v. Acuff-Rose Music, Inc., 510 U.S. 569 (1994). 6, 7 Capitol Records, LLC v. ReDigi Inc., No. 16-2321 (2d Cir. Dec. 12, 2018) . 7 Elsmere Music, Inc. v. Nat’l Broad. Co., 482 F. Supp. 741 (S.D.N.Y.), aff’d, 632 F.2d 252 (2d Cir.
    [Show full text]
  • Google Apps Training Guide
    The Ultimate Google Apps Training Guide A Training Guide for Google Apps Users, from The Gooru *Note - This document will be updated over time, please check back to see the updates. To get notified of new updates: Add us to your Circles on Google+ **For in depth training on everything Google Apps, please visit Gooru University Table of Contents 1. Introduction 2. Gmail a. Basic Features b. Unique Features c. Manage Your Inbox d. Gmail Tricks e. Gmail Extensions f. Inbox by Gmail g. Other Training Materials 3. Calendars a. Calendar Features b. Calendar Labs c. Other Training Materials 4. Contacts a. Contacts Features b. Other Training Materials 5. Drive a. Basic Features b. Unique Features c. Drive Tricks d. Drive for Admins e. Other Training Materials 6. Docs a. Docs Features b. Docs Add-ons 7. Sheets a. Beginner Features b. Advanced Features c. Sheets Add-ons 8. Presentations a. Presentations Features 9. Google+ a. Google+ Features b. Other Training Materials 10. Conclusion © 2015 The Gooru. 2 Introduction If you’re reading this, you are probably new to the Google Apps ecosystem. You might not be aware of the platform’s amazing capabilities, from real- time collaboration, to 100% web applications and more. So what can you do to ensure you’re getting the most out of Google Apps? As a Google Apps user, it’s important to understand the basics of Google Apps and other features, in order to keep up with Google’s pace of innovation and ensure you’re getting the most out of Google Apps.
    [Show full text]
  • Introduction to Email Part 1 Beginners Guide TOPIC INTRODUCTION to EMAIL - PART 1
    Tech Savvy Seniors Introduction to Email Part 1 Beginners Guide TOPIC INTRODUCTION TO EMAIL - PART 1 WELCOME Email is one of the fundamental internet technologies, TO EMAIL! a tool used by nearly every person with an internet connection. It allows you to –at no cost – send a letter of unlimited length to one person, or many people at once. It arrives almost instantly, and they can reply straight away. Setting up your own email account will allow you to communicate with people you know in ways you never thought possible. WHO IS THIS While you will have heard of email, you may not know WORKSHOP FOR? exactly how it works, what you need to get set up, or how to use it. You won’t have an existing email account, either… but you will after this workshop! WHAT YOU’LL An internet-connected laptop or desktop computer; NEED either your own or supplied by the workshop organisers. You may need to share a computer with others in the workshop. WHAT YOU’LL This workshop covers the basic steps you need to help LEARN keep in touch with your family and friends using email. It will explain how to set up an email account, how to send an email, and how to read and reply to emails that have been sent to you. TIMETABLE SUBJECT DURATION We’ve broken down today’s workshop What is email and how does it work? 10 minutes into seven parts, with a 10-minute break in A guide to email addresses: what 10 minutes the middle.
    [Show full text]
  • Apps That Make Your Life Simpler Apps That Make Your Life Simpler
    Apps That Make Your Life Simpler Apps That Make Your Life Simpler New Gmail Interface New Gmail Interface Presenters: • Jeff Morris, Gray Stone Day School • Todd Schuler, Cardinal Gibbons High School • Roy Turner, NCADA Executive Director New Gmail Interface Three Objectives: • Reduce Clutter • More Organized • More Manageable New Gmail Interface • Go to the Settings Cog in the top right corner and choose • Try New Gmail Option (All since 10/18) • Flat Design View (Density) • Controls within the inbox (Hover Over-Quick Access) • Snooze Feature (Awesome) • Smart Reply’s (Mobile version now on Desktop) • New Sidebar (Work flow and CRM) • Inline Attachments • Confidential Mode New Gmail Interface • Flat Design View (Default, Comfortable, Compact) New Gmail Interface New Gmail Interface New Gmail Interface • Controls within the Inbox • Want Less Clutter and more space on your desktop? • Collapse Labels and Filters (Hamburger Menu) New Gmail Interface • Controls within the Inbox (Display Cursor) • Choose from (Default, Important, Unread, Stared or Priority) New Gmail Interface • Settings: General Suggestions: • Page Size • Undo Send (Maximum) • Default Reply • Hover Actions • Smart Reply • Desktop Notifications • Keyboard Shortcuts • Signature (Create in word Copy/Paste) • Save Changes New Gmail Interface • Settings: General Suggestions: • Page Size • Undo Send (Maximum) • Default Reply • Hover Actions • Smart Reply • Desktop Notifications • Keyboard Shortcuts • Signature (Create in word Copy/Paste) • Save Changes New Gmail Interface • Settings: Advanced Suggestions: • Canned Responses • Custom Keyboard Shortcuts • Preview Pane • Unread Message Icon • Multiple Inboxes • Right-side Chat • Save Changes New Gmail Interface • Settings: Advanced Suggestions: • Canned Responses • Custom Keyboard Shortcuts • Preview Pane • Unread Message Icon • Multiple Inboxes • Right-side Chat • Save Changes New Gmail Interface Canned Responses (Templates) • Create a templated response by saving common messages using a button in compose toolbar.
    [Show full text]