Ir al contenido principal

How to partially export your old emails from GMail

 Now that Google Photos changed its policies most of us have been overloaded with synchronized photos that are filling the available space in our Google accounts.. but nobody likes to delete photos (mind that it could be needed to stop the sync with GPhotos thought) so lets try to tackle the issue from a different angle


In order to clean up the GMail inbox of old emails one can follow this procedure:

  1. Perform a search until the desired date
  2. Select all the conversations and apply a tag to all of them
  3. Go to Google takeout and search for Google Mail
  4. Click on the right button and select only the tag you just created
  5. Follow the instructions and create the export
  6. Wait until the export is finished and download and save your export
  7. Go to GMail and perform the search again, then select all the messages and delete them. Last, empty your trash.

I hope this serves you well! My drive usage gone from 18.44 GB to 18GB

 

->  

Update:Seems like Google takes a while to recalculate the usage, so it actually went down to 15.67GB, now it's not even red wow

Comentarios

Entradas populares de este blog

Use rclone to mount cloud storage

I realized that the fat clients that allows you to sync your contents are not only wasting CPU cycles but also lots of disk space. Yes, that enables you to have the file opened almost instantly, no matter its size, but for me that use case is almost never needed, I use the cloud storage to save stuff that is in the range of a few MiB. Here is where rclone comes into play, it allows you to mount your storage as if it were a regular disk, and it handles the communication with the cloud servers on the go. As there are many different combinations I'll cover only two Linux w/ Dropbox curl https://rclone.org/install.sh | bash # Use rclone config to add a new remote called db for dropbox MAIN_USER=$SUDO_USER MAIN_USER_HOME=$(grep ^$SUDO_USER: /etc/passwd | head -1 | cut -d: -f6) mkdir /media/db chown $MAIN_USER:$MAIN_USER /media/db cat <<EOF > /lib/systemd/system/rclone-db.service [Unit] Description=Dropbox rclone mount After=multi-user.targetrclone [Service] Type=simple User=$ M...