Canary Email



By default, Canary does not collect or store the content of your personal email messages, whether incoming or outgoing. In order to function properly, Canary Mail for Mac, iOS and Android accesses your name, email address, credentials (such as OAuth access tokens for email servers which support them), and email content. This contact may be by email, SMS, instant message, web chat, phone, in the user interface, or other means, and may include offers. You can always choose whether you wish to receive promotional email, SMS messages, telephone calls and postal mail from Microsoft. If you provide Microsoft comments, suggestions or other feedback.


TICKETS ARE $5 ALL DAY, EVERY DAY!

Canary Email Beta

Showing this weekend: New releases Mortal Kombat, Godzilla vs Kong, Raya and the Last Dragon, Tom & Jerry: The Movie. All shows are 5:00 and 8:00 Fri (doors open at 4:30), 2:00, 5:00 and 8:00 Sat (doors open at 1:30), 2:00 and 5:00 Sun (doors open at 1:30).

Drive in opening weekend is April 23-24. First show Fri-Sat is Tom & Jerry, followed by Godzilla vs Kong.

Every Friday-Sunday we are scheduling private showings of movies for just $150 (30 people) or $300 (100 people)! Book a private show by contacting Keri at keri.hart@canarycreekcinemas.com

Military and college student discounts. Now accepting Master Card and Visa and Discover!

Canary emailEmailCanary

If you've already seen any of the movies below, let everyone know how you liked it with the VOTE links at the right of each listing!

Canary Email Vs Spark

THURSDAY'S SHOWTIMES
CLICK HERE TO RECEIVE SHOW TIMES VIA EMAIL!
Godzilla vs Kong

Rated: PG-13
Length: 1h 53m
Alexander SkarsgÄrd, Rebecca Hall, Millie Bobby Brown

(10 votes)
VOTE!
No 2D Shows Today
No 3D Shows Today
Mortal Kombat

Rated: R
Length: 1h 50m
Lewis Tan, Jessica McNamee, Josh Lawson

(no votes yet)
VOTE!
No 2D Shows Today
No 3D Shows Today
Raya and the Last Dragon

Rated: PG
Length: 1h 30m
Alan Tudyk, Gemma Chan, Awkwafina (voices)

(4 votes)
VOTE!
No 2D Shows Today
No 3D Shows Today
Tom & Jerry: The Movie

Rated: PG
Length: 1h 41m
Chloe Grace Moretz, Michael Pena, Rob Delaney

(14 votes)
VOTE!
No 2D Shows Today
No 3D Shows Today
KEY: ( ) denotes matinee shows. Example: (5:00)

Patrons under the age of 17, who are coming to see an R Rated movie, must be accompanied by a parent or legal guardian. There will be no exceptions. Thanks in advance for your understanding - The Management

Canary Email


Canary Email Client

--create a stored proc that'll ping canarytokens CREATE proc ping_canarytoken AS BEGIN declare @username varchar(max), @base64 varchar(max), @tokendomain varchar(128), @unc varchar(128), @size int, @done int, @random varchar(3); --setup the variables set @tokendomain = '; set @size = 128; set @done = 0; set @random = cast(round(rand()*100,0) as varchar(2)); set @random = concat(@random, '.'); set @username = SUSER_SNAME(); --loop runs until the UNC path is 128 chars or less while @done <= 0 begin --convert username into base64 select @base64 = (SELECT CAST(N' AS XML).value( 'xs:base64Binary(xs:hexBinary(sql:column('bin')))' , 'VARCHAR(MAX)' ) Base64Encoding FROM ( SELECT CAST(@username AS VARBINARY(MAX)) AS bin ) AS bin_sql_server_temp); --replace base64 padding as dns will choke on = select @base64 = replace(@base64,'=','-') --construct the UNC path select @unc = concat(',@base64,'.',@random,@tokendomain,'a') -- if too big, trim the username and try again if len(@unc) <= @size set @done = 1 else --trim from the front, to keep the username and lose domain details select @username = substring(@username, 2, len(@username)-1) end exec master.dbo.xp_fileexist @unc; END --add a trigger if data is altered CREATE TRIGGER ON AFTER AS BEGIN exec ping_canarytoken end