Boxford receives Healey-signed emergency declaration to restore water in Andrews Farm neighborhood
WATER COMPANY FOR YEARS. LET’S SEE. AND THERE’S NOTHING, NOT A DROP OF WATER. WHEN JEREMY REESE TURNS ON HIS HOSE IN THE BACKYARD. THEY’RE ONE OF THE 53 HOUSES IN ANDREWS FARM NEIGHBORHOOD WITHOUT WATER. TRYING TO JUST GET BY AS BEST WE CAN. BECAUSE WE DO HAVE, YOU KNOW, THREE KIDS PLUS US IN THE HOUSE. SO IT’S. IT’S TOUGH GOING THROUGH DISHES AND CAN’T WASH DISHES, CAN’T WASH CLOTHES, CAN’T, CAN’T REALLY DO ANYTHING. THE QUIET BOXFORD COMMUNITY GETS ITS WATER FROM A PRIVATE COMPANY THAT, FOR SOME REASON, IS HAVING A SERVICE ISSUE. LEAVING TAPS, DRIBBLING AND DRY AT THIS POINT. HOW CAN I FEEL LIKE ANYBODY DOES CARE? IT’S BEEN TEN YEARS. NEIGHBORS SAY THEY’VE HAD ISSUES WITH ANDREWS FARM WATER COMPANY FOR YEARS. JUST LAST WEEK, LOSING WATER FOR A DAY. NOW THE TOWN IS TRYING TO HELP, DECLARING A STATE OF EMERGENCY AND URGING THE GOVERNOR TO DO THE SAME. AN EMERGENCY DECLARATION FROM HER WOULD ALLOW THE STATE TO STEP IN. MY UNDERSTANDING IS THEY THEY DO HAVE THE AUTHORITY TO BRING IN ANOTHER WATER OPERATOR TO RESTORE SERVICE. AND THAT’S WHAT THE TOWN IS TRYING TO DO AT THIS MOMENT. FOR NOW, FAMILIES ARE RELYING ON BOTTLED WATER, SHOWERING AT THE TOWN FIRE DEPARTMENT AND WAITING FOR SOMEONE TO HELP. WHAT’S MORE IMPORTANT RIGHT NOW, RIGHT, THAN A WHOLE NEIGHBORHOOD OF 53 HOMES NOT HAVING WATER? NOW, I HAVE REACHED OUT TO ANDREWS FARM WATER COMPANY TO FIND OUT WHAT THEY’RE DOING ABOUT THIS AND

Updated: 7:38 PM EDT Sep 10, 2025
Editorial Standards ⓘ
Advertisement
Boxford receives Healey-signed emergency declaration to restore water in Andrews Farm neighborhood

Updated: 7:38 PM EDT Sep 10, 2025
Editorial Standards ⓘ
Massachusetts Gov. Maura Healey signed a Declaration of Water Emergency Wednesday after the town officials pressed the state to allow other actions to restore water service in a Boxford, Massachusetts neighborhood. Boxford Town Administrator Matt Coogan said in a series of statements that the town wanted the emergency declared because it would allow the Department of Public Utilities to bring in a licensed operator who could restore service to residents on Andrews Farm Road and Upton Lane."DPU will now assume control of the Andrews Farm Water Company system and install a new operator," a statement from Senate Minority Leader Bruce Tarr read. "Implementation will take place over the coming days.""Trying to get by just as best we can because we have three kids plus us in-house, so it's tough going through dishes. Can't wash dishes, can't wash clothes, can't really do anything," said resident Jeremy Reese. "What's more important now than a whole neighborhood of 53 homes not having water?" asked Jennifer Reese.The Boxford Board of Health has already issued its own emergency declaration for the Andrews Farm community on the recommendation of the governor’s office. According to Coogan, the action was taken because of "repeated service interruptions and the Andrews Farm Water Company’s failure to provide safe, reliable drinking water.""My understanding is they do have the authority to bring in another water operator to restore service, and that's what the town is trying to do at this moment," Coogan said.Coogan said that he and other town officials visited the company's pump house on Tuesday, but company representatives never arrived."Despite being notified by both the Town and the Commonwealth, AFWC has neither dispatched personnel nor provided any remedial response. In a situation affecting public health and safety, this conduct is unacceptable and deplorable," Coogan wrote in a statement issued Tuesday. Meanwhile, Coogan said the Boxford Fire Department delivered bottled water to affected residents. Twenty-four-hour bathrooms, showers and bottle-filling stations were also made available at the town fire station. A tanker truck of water will be delivered to the neighborhood by 9 a.m. Thursday.
BOXFORD, Mass. —
Massachusetts Gov. Maura Healey signed a Declaration of Water Emergency Wednesday after the town officials pressed the state to allow other actions to restore water service in a Boxford, Massachusetts neighborhood.
Boxford Town Administrator Matt Coogan said in a series of statements that the town wanted the emergency declared because it would allow the Department of Public Utilities to bring in a licensed operator who could restore service to residents on Andrews Farm Road and Upton Lane.
HOURLY
DAILY
RADAR
TRAFFIC
${data.primaryTemp}°
${data.secondaryInfo}
`; } function initializeWeatherBox(container) { function switchWeatherTab(tabName, clickedElement) { container.querySelectorAll('[data-tab-id]').forEach(function(tab) { tab.classList.remove('open'); }); clickedElement.classList.add('open'); container.querySelectorAll('[data-content-id]').forEach(function(content) { content.style.display = 'none'; }); var targetContent = container.querySelector('[data-content-id="' + tabName + '"]'); if (targetContent) { targetContent.style.display = 'block'; } } function loadWeatherData() { var location = { zip: window.DEFAULT_ZIPCODE }; try { var storedLocation = localStorage.getItem('htv.zip.last'); if (storedLocation) { location = JSON.parse(storedLocation); } } catch (e) {} var apiUrl = (window.DEWY_HOSTNAME || '') + '/api/v1/weather/full/' + location.zip; if (window.fetch) { fetch(apiUrl) .then(function(response) { return response.json(); }) .then(function(data) { if (data && data.data) { var article = container.closest('.article--wrapper'); var weatherContainer = container.closest('.weather-box-container'); if (weatherContainer) { weatherContainer.style.display = 'flex'; updateCurrentWeather(data.data); updateForecastTabs(data.data); updateWeatherAlertsBar(data.data); } } }) .catch(function(error) { console.error('Error loading weather:', error); }); } } function updateWeatherAlertsBar(weatherData) { var weatherWatchHeader = container.querySelector('.weather-watch-header'); if (weatherWatchHeader && weatherData.alerts_count > 0) { weatherWatchHeader.className = 'weather-watch-header has-alerts'; var weatherWatchText = weatherWatchHeader.querySelector('.weather-watch-text'); var weatherWatchLink = weatherWatchHeader.querySelector('.weather-watch-link'); if (weatherWatchText) { weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`; } if (weatherWatchLink) { weatherWatchLink.href = '/alerts'; } } } function updateCurrentWeather(weatherData) { if (weatherData.current) { var tempEl = container.querySelector('.weather-grid--current-temp-value'); if (tempEl) tempEl.textContent = weatherData.current.temp_f || ''; var iconEl = container.querySelector('.weather-grid--current-icon'); if (iconEl && weatherData.current.icon_name) { iconEl.className = 'weather-grid--current-icon weather-current-icon icon icon-weather-' + weatherData.current.icon_name; } var skyEl = container.querySelector('.weather-grid--sky'); if (skyEl) skyEl.textContent = weatherData.current.sky || ''; var feelsEl = container.querySelector('.weather-grid--feels'); if (feelsEl) feelsEl.textContent = (weatherData.current.feels_like_f || weatherData.current.temp_f || '') + '°F'; } } function updateForecastTabs(weatherData) { if (weatherData.hourly) { var hourlyContainer = container.querySelector('.weather-hourly-forecast'); if (hourlyContainer) { var html = ''; var maxHours = Math.min(5, weatherData.hourly.length); for (var i = 0; i < maxHours; i++) { var hour = weatherData.hourly[i]; html += generateForecastItem({ timeLabel: hour.hour_display, iconName: hour.icon_name, primaryTemp: hour.temp_f, secondaryInfo: hour.precip_chance + '%' }); } hourlyContainer.innerHTML = html; } } if (weatherData.daily) { var dailyContainer = container.querySelector('.weather-daily-forecast'); if (dailyContainer) { var html = ''; var maxDays = Math.min(5, weatherData.daily.length); for (var i = 0; i < maxDays; i++) { var day = weatherData.daily[i]; var dayName = getShortDayName(day.day); html += generateForecastItem({ timeLabel: dayName, iconName: day.icon_name, primaryTemp: day.high_f, secondaryInfo: day.low_f + '°' }); } dailyContainer.innerHTML = html; } } } function getShortDayName(dayName) { switch (dayName) { case 'Today': return 'Today'; case 'Tomorrow': return 'Tmrw'; case 'Sunday': return 'Sun'; case 'Monday': return 'Mon'; case 'Tuesday': return 'Tue'; case 'Wednesday': return 'Wed'; case 'Thursday': return 'Thu'; case 'Friday': return 'Fri'; case 'Saturday': return 'Sat'; default: return dayName; } } container.querySelectorAll('[data-tab-id]').forEach(function(tab) { tab.onclick = function() { switchWeatherTab(this.getAttribute('data-tab-id'), this); return false; }; }); loadWeatherData(); } document.querySelectorAll('.weather-sidebar').forEach(function(weatherBox) { initializeWeatherBox(weatherBox); }); document.addEventListener('fullscreenchange', function() { var fullscreenElement = document.fullscreenElement; if (!fullscreenElement) { document.querySelector('.weather-box-container').querySelectorAll('.fa-times').forEach(function(icon) { icon.classList.remove('fa-times'); icon.classList.add('fa-expand'); }); } });});
Advertisement
"DPU will now assume control of the Andrews Farm Water Company system and install a new operator," a statement from Senate Minority Leader Bruce Tarr read. "Implementation will take place over the coming days."
"Trying to get by just as best we can because we have three kids plus us in-house, so it's tough going through dishes. Can't wash dishes, can't wash clothes, can't really do anything," said resident Jeremy Reese.
"What's more important now than a whole neighborhood of 53 homes not having water?" asked Jennifer Reese.
The Boxford Board of Health has already issued its own emergency declaration for the Andrews Farm community on the recommendation of the governor’s office. According to Coogan, the action was taken because of "repeated service interruptions and the Andrews Farm Water Company’s failure to provide safe, reliable drinking water."
"My understanding is they do have the authority to bring in another water operator to restore service, and that's what the town is trying to do at this moment," Coogan said.
Coogan said that he and other town officials visited the company's pump house on Tuesday, but company representatives never arrived.
"Despite being notified by both the Town and the Commonwealth, AFWC has neither dispatched personnel nor provided any remedial response. In a situation affecting public health and safety, this conduct is unacceptable and deplorable," Coogan wrote in a statement issued Tuesday.
Meanwhile, Coogan said the Boxford Fire Department delivered bottled water to affected residents. Twenty-four-hour bathrooms, showers and bottle-filling stations were also made available at the town fire station. A tanker truck of water will be delivered to the neighborhood by 9 a.m. Thursday.